2024-01-27T23:17:10.480 INFO:root:teuthology version: 0.0.1.dev251+gc856e0f 2024-01-27T23:17:10.481 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131 --owner scheduled_yuriw@teuthology --name yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi --verbose --description rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} -- /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131/orig.config.yaml 2024-01-27T23:17:10.514 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-01-27T23:17:10.586 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131 branch: pacific-release description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: null first_in_suite: false job_id: '7535131' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '18.04' overrides: admin_socket: branch: pacific-release ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: a72a5dace2353a54147d37bd2699a2a482507966 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a72a5dace2353a54147d37bd2699a2a482507966 workunit: branch: pacific-release sha1: 585bdf827237450fb80df4a856eba434a64948fa owner: scheduled_yuriw@teuthology priority: 75 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 6332 sha1: a72a5dace2353a54147d37bd2699a2a482507966 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: pacific-release suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_585bdf827237450fb80df4a856eba434a64948fa/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 585bdf827237450fb80df4a856eba434a64948fa targets: smithi099.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE= smithi142.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: c856e0f9244dd29a50697123b480d63f16a4ed81 timestamp: 2024-01-26_16:10:31 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-01-27T23:17:10.586 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_585bdf827237450fb80df4a856eba434a64948fa/qa; will attempt to use it 2024-01-27T23:17:10.587 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_585bdf827237450fb80df4a856eba434a64948fa/qa/tasks 2024-01-27T23:17:10.587 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-01-27T23:17:10.588 INFO:teuthology.task.internal:Checking packages... 2024-01-27T23:17:10.612 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'a72a5dace2353a54147d37bd2699a2a482507966' 2024-01-27T23:17:10.612 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-01-27T23:17:10.612 INFO:teuthology.packaging:ref: None 2024-01-27T23:17:10.612 INFO:teuthology.packaging:tag: None 2024-01-27T23:17:10.612 INFO:teuthology.packaging:branch: pacific-release 2024-01-27T23:17:10.612 INFO:teuthology.packaging:sha1: a72a5dace2353a54147d37bd2699a2a482507966 2024-01-27T23:17:10.612 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F18.04%2Fx86_64&ref=pacific-release 2024-01-27T23:17:10.759 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-508-ga72a5dac-1bionic 2024-01-27T23:17:10.760 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-01-27T23:17:10.766 INFO:teuthology.task.internal:no buildpackages task found 2024-01-27T23:17:10.766 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-01-27T23:17:10.797 INFO:teuthology.task.internal:Saving configuration 2024-01-27T23:17:10.810 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-01-27T23:17:10.830 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-27T23:17:10.855 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi099.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-27 23:11:50.210281', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII4U6ItCfOdoN1WdROC3KO40lcw/kzXeIM8M8q950kfL'} 2024-01-27T23:17:10.878 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi142.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-27 23:11:50.208899', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII4U6ItCfOdoN1WdROC3KO40lcw/kzXeIM8M8q950kfL'} 2024-01-27T23:17:10.878 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-01-27T23:17:10.884 INFO:teuthology.task.internal:roles: ubuntu@smithi099.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-01-27T23:17:10.884 INFO:teuthology.task.internal:roles: ubuntu@smithi142.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-01-27T23:17:10.885 INFO:teuthology.run_tasks:Running task console_log... 2024-01-27T23:17:10.972 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f57ca0350d0>, signals=[15]) 2024-01-27T23:17:10.973 INFO:teuthology.run_tasks:Running task internal.connect... 2024-01-27T23:17:10.981 INFO:teuthology.task.internal:Opening connections... 2024-01-27T23:17:10.981 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi099.front.sepia.ceph.com 2024-01-27T23:17:10.983 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi099.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:17:11.067 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi142.front.sepia.ceph.com 2024-01-27T23:17:11.068 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:17:11.145 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-01-27T23:17:11.152 DEBUG:teuthology.orchestra.run.smithi099:> uname -m 2024-01-27T23:17:11.188 INFO:teuthology.orchestra.run.smithi099.stdout:x86_64 2024-01-27T23:17:11.189 DEBUG:teuthology.orchestra.run.smithi099:> cat /etc/os-release 2024-01-27T23:17:11.234 INFO:teuthology.orchestra.run.smithi099.stdout:NAME="Ubuntu" 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:VERSION="18.04.6 LTS (Bionic Beaver)" 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:ID=ubuntu 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:ID_LIKE=debian 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:PRETTY_NAME="Ubuntu 18.04.6 LTS" 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:VERSION_ID="18.04" 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:HOME_URL="https://www.ubuntu.com/" 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:VERSION_CODENAME=bionic 2024-01-27T23:17:11.235 INFO:teuthology.orchestra.run.smithi099.stdout:UBUNTU_CODENAME=bionic 2024-01-27T23:17:11.236 INFO:teuthology.lock.ops:Updating smithi099.front.sepia.ceph.com on lock server 2024-01-27T23:17:11.256 DEBUG:teuthology.orchestra.run.smithi142:> uname -m 2024-01-27T23:17:11.266 INFO:teuthology.orchestra.run.smithi142.stdout:x86_64 2024-01-27T23:17:11.266 DEBUG:teuthology.orchestra.run.smithi142:> cat /etc/os-release 2024-01-27T23:17:11.315 INFO:teuthology.orchestra.run.smithi142.stdout:NAME="Ubuntu" 2024-01-27T23:17:11.316 INFO:teuthology.orchestra.run.smithi142.stdout:VERSION="18.04.6 LTS (Bionic Beaver)" 2024-01-27T23:17:11.316 INFO:teuthology.orchestra.run.smithi142.stdout:ID=ubuntu 2024-01-27T23:17:11.316 INFO:teuthology.orchestra.run.smithi142.stdout:ID_LIKE=debian 2024-01-27T23:17:11.316 INFO:teuthology.orchestra.run.smithi142.stdout:PRETTY_NAME="Ubuntu 18.04.6 LTS" 2024-01-27T23:17:11.316 INFO:teuthology.orchestra.run.smithi142.stdout:VERSION_ID="18.04" 2024-01-27T23:17:11.316 INFO:teuthology.orchestra.run.smithi142.stdout:HOME_URL="https://www.ubuntu.com/" 2024-01-27T23:17:11.316 INFO:teuthology.orchestra.run.smithi142.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-01-27T23:17:11.316 INFO:teuthology.orchestra.run.smithi142.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-01-27T23:17:11.316 INFO:teuthology.orchestra.run.smithi142.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-01-27T23:17:11.316 INFO:teuthology.orchestra.run.smithi142.stdout:VERSION_CODENAME=bionic 2024-01-27T23:17:11.317 INFO:teuthology.orchestra.run.smithi142.stdout:UBUNTU_CODENAME=bionic 2024-01-27T23:17:11.317 INFO:teuthology.lock.ops:Updating smithi142.front.sepia.ceph.com on lock server 2024-01-27T23:17:11.346 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-01-27T23:17:11.356 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-01-27T23:17:11.380 INFO:teuthology.task.internal:Checking for old test directory... 2024-01-27T23:17:11.380 DEBUG:teuthology.orchestra.run.smithi099:> test '!' -e /home/ubuntu/cephtest 2024-01-27T23:17:11.383 DEBUG:teuthology.orchestra.run.smithi142:> test '!' -e /home/ubuntu/cephtest 2024-01-27T23:17:11.388 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-01-27T23:17:11.405 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-01-27T23:17:11.405 DEBUG:teuthology.orchestra.run.smithi099:> test -z $(ls -A /var/lib/ceph) 2024-01-27T23:17:11.431 DEBUG:teuthology.orchestra.run.smithi142:> test -z $(ls -A /var/lib/ceph) 2024-01-27T23:17:11.454 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-01-27T23:17:11.510 INFO:teuthology.run_tasks:Running task kernel... 2024-01-27T23:17:11.524 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-01-27T23:17:11.525 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-01-27T23:17:11.525 DEBUG:teuthology.orchestra.run.smithi099:> test -f /run/.containerenv -o -f /.dockerenv 2024-01-27T23:17:11.525 DEBUG:teuthology.orchestra.run.smithi142:> test -f /run/.containerenv -o -f /.dockerenv 2024-01-27T23:17:11.530 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:17:11.531 DEBUG:teuthology.orchestra.run.smithi099:> uname -r 2024-01-27T23:17:11.531 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:17:11.532 DEBUG:teuthology.orchestra.run.smithi142:> uname -r 2024-01-27T23:17:11.578 INFO:teuthology.orchestra.run.smithi099.stdout:4.15.0-200-generic 2024-01-27T23:17:11.579 INFO:teuthology.task.kernel:Running kernel on smithi099: 4.15.0-200-generic 2024-01-27T23:17:11.579 DEBUG:teuthology.orchestra.run.smithi099:> sudo apt-get clean 2024-01-27T23:17:11.580 INFO:teuthology.orchestra.run.smithi142.stdout:4.15.0-200-generic 2024-01-27T23:17:11.580 INFO:teuthology.task.kernel:Running kernel on smithi142: 4.15.0-200-generic 2024-01-27T23:17:11.580 DEBUG:teuthology.orchestra.run.smithi142:> sudo apt-get clean 2024-01-27T23:17:11.678 DEBUG:teuthology.orchestra.run.smithi099:> sudo apt-get update 2024-01-27T23:17:11.689 DEBUG:teuthology.orchestra.run.smithi142:> sudo apt-get update 2024-01-27T23:17:11.853 INFO:teuthology.orchestra.run.smithi099.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-27T23:17:11.855 INFO:teuthology.orchestra.run.smithi099.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 2024-01-27T23:17:11.855 INFO:teuthology.orchestra.run.smithi142.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-27T23:17:11.858 INFO:teuthology.orchestra.run.smithi142.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 2024-01-27T23:17:11.932 INFO:teuthology.orchestra.run.smithi099.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB] 2024-01-27T23:17:11.937 INFO:teuthology.orchestra.run.smithi142.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB] 2024-01-27T23:17:11.982 INFO:teuthology.orchestra.run.smithi099.stdout:Get:4 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 2024-01-27T23:17:11.983 INFO:teuthology.orchestra.run.smithi142.stdout:Get:4 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 2024-01-27T23:17:12.203 INFO:teuthology.orchestra.run.smithi099.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,045 kB] 2024-01-27T23:17:12.205 INFO:teuthology.orchestra.run.smithi142.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [1,665 kB] 2024-01-27T23:17:12.350 INFO:teuthology.orchestra.run.smithi142.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,045 kB] 2024-01-27T23:17:12.358 INFO:teuthology.orchestra.run.smithi099.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [1,665 kB] 2024-01-27T23:17:12.389 INFO:teuthology.orchestra.run.smithi099.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [554 kB] 2024-01-27T23:17:12.406 INFO:teuthology.orchestra.run.smithi099.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [1,347 kB] 2024-01-27T23:17:12.424 INFO:teuthology.orchestra.run.smithi099.stdout:Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [39.7 kB] 2024-01-27T23:17:12.425 INFO:teuthology.orchestra.run.smithi099.stdout:Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [187 kB] 2024-01-27T23:17:12.430 INFO:teuthology.orchestra.run.smithi099.stdout:Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [1,663 kB] 2024-01-27T23:17:12.432 INFO:teuthology.orchestra.run.smithi142.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [554 kB] 2024-01-27T23:17:12.453 INFO:teuthology.orchestra.run.smithi142.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [1,347 kB] 2024-01-27T23:17:12.464 INFO:teuthology.orchestra.run.smithi142.stdout:Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [39.7 kB] 2024-01-27T23:17:12.465 INFO:teuthology.orchestra.run.smithi142.stdout:Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [187 kB] 2024-01-27T23:17:12.471 INFO:teuthology.orchestra.run.smithi099.stdout:Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,915 kB] 2024-01-27T23:17:12.473 INFO:teuthology.orchestra.run.smithi142.stdout:Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [1,663 kB] 2024-01-27T23:17:12.497 INFO:teuthology.orchestra.run.smithi099.stdout:Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [421 kB] 2024-01-27T23:17:12.506 INFO:teuthology.orchestra.run.smithi099.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [11.2 kB] 2024-01-27T23:17:12.506 INFO:teuthology.orchestra.run.smithi099.stdout:Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [25.6 kB] 2024-01-27T23:17:12.506 INFO:teuthology.orchestra.run.smithi099.stdout:Get:16 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2,717 kB] 2024-01-27T23:17:12.507 INFO:teuthology.orchestra.run.smithi099.stdout:Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [6,088 B] 2024-01-27T23:17:12.507 INFO:teuthology.orchestra.run.smithi099.stdout:Get:18 http://archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [53.2 kB] 2024-01-27T23:17:12.507 INFO:teuthology.orchestra.run.smithi099.stdout:Get:19 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [53.3 kB] 2024-01-27T23:17:12.507 INFO:teuthology.orchestra.run.smithi099.stdout:Get:20 http://archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [18.1 kB] 2024-01-27T23:17:12.508 INFO:teuthology.orchestra.run.smithi099.stdout:Get:21 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [18.2 kB] 2024-01-27T23:17:12.518 INFO:teuthology.orchestra.run.smithi142.stdout:Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,915 kB] 2024-01-27T23:17:12.535 INFO:teuthology.orchestra.run.smithi142.stdout:Get:13 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages [1,379 kB] 2024-01-27T23:17:12.542 INFO:teuthology.orchestra.run.smithi142.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [421 kB] 2024-01-27T23:17:12.548 INFO:teuthology.orchestra.run.smithi142.stdout:Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [25.6 kB] 2024-01-27T23:17:12.548 INFO:teuthology.orchestra.run.smithi142.stdout:Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [11.2 kB] 2024-01-27T23:17:12.548 INFO:teuthology.orchestra.run.smithi142.stdout:Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [6,088 B] 2024-01-27T23:17:12.548 INFO:teuthology.orchestra.run.smithi142.stdout:Get:18 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [53.3 kB] 2024-01-27T23:17:12.549 INFO:teuthology.orchestra.run.smithi142.stdout:Get:19 http://archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [53.2 kB] 2024-01-27T23:17:12.550 INFO:teuthology.orchestra.run.smithi142.stdout:Get:20 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [18.2 kB] 2024-01-27T23:17:12.550 INFO:teuthology.orchestra.run.smithi142.stdout:Get:21 http://archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [18.1 kB] 2024-01-27T23:17:12.982 INFO:teuthology.orchestra.run.smithi142.stdout:Get:22 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2,717 kB] 2024-01-27T23:17:13.028 INFO:teuthology.orchestra.run.smithi099.stdout:Get:22 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages [1,379 kB] 2024-01-27T23:17:13.059 INFO:teuthology.orchestra.run.smithi099.stdout:Get:23 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [467 kB] 2024-01-27T23:17:13.066 INFO:teuthology.orchestra.run.smithi099.stdout:Get:24 http://security.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [33.0 kB] 2024-01-27T23:17:13.067 INFO:teuthology.orchestra.run.smithi099.stdout:Get:25 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [1,317 kB] 2024-01-27T23:17:13.118 INFO:teuthology.orchestra.run.smithi099.stdout:Get:26 http://security.ubuntu.com/ubuntu bionic-security/restricted Translation-en [182 kB] 2024-01-27T23:17:13.118 INFO:teuthology.orchestra.run.smithi142.stdout:Get:23 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [467 kB] 2024-01-27T23:17:13.122 INFO:teuthology.orchestra.run.smithi099.stdout:Get:27 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,303 kB] 2024-01-27T23:17:13.134 INFO:teuthology.orchestra.run.smithi142.stdout:Get:24 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [1,317 kB] 2024-01-27T23:17:13.151 INFO:teuthology.orchestra.run.smithi099.stdout:Get:28 http://security.ubuntu.com/ubuntu bionic-security/universe i386 Packages [1,078 kB] 2024-01-27T23:17:13.167 INFO:teuthology.orchestra.run.smithi142.stdout:Get:25 http://security.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [33.0 kB] 2024-01-27T23:17:13.167 INFO:teuthology.orchestra.run.smithi142.stdout:Get:26 http://security.ubuntu.com/ubuntu bionic-security/restricted Translation-en [182 kB] 2024-01-27T23:17:13.170 INFO:teuthology.orchestra.run.smithi142.stdout:Get:27 http://security.ubuntu.com/ubuntu bionic-security/universe i386 Packages [1,078 kB] 2024-01-27T23:17:13.172 INFO:teuthology.orchestra.run.smithi099.stdout:Get:29 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [308 kB] 2024-01-27T23:17:13.193 INFO:teuthology.orchestra.run.smithi099.stdout:Get:30 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [19.8 kB] 2024-01-27T23:17:13.211 INFO:teuthology.orchestra.run.smithi142.stdout:Get:28 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,303 kB] 2024-01-27T23:17:13.236 INFO:teuthology.orchestra.run.smithi142.stdout:Get:29 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [308 kB] 2024-01-27T23:17:13.249 INFO:teuthology.orchestra.run.smithi142.stdout:Get:30 http://security.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [6,008 B] 2024-01-27T23:17:13.357 INFO:teuthology.orchestra.run.smithi099.stdout:Get:31 http://security.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [6,008 B] 2024-01-27T23:17:13.413 INFO:teuthology.orchestra.run.smithi142.stdout:Get:31 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [19.8 kB] 2024-01-27T23:17:13.439 INFO:teuthology.orchestra.run.smithi099.stdout:Get:32 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [3,928 B] 2024-01-27T23:17:13.585 INFO:teuthology.orchestra.run.smithi142.stdout:Get:32 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [3,928 B] 2024-01-27T23:17:15.154 INFO:teuthology.orchestra.run.smithi099.stdout:Fetched 20.1 MB in 3s (6,246 kB/s) 2024-01-27T23:17:15.178 INFO:teuthology.orchestra.run.smithi142.stdout:Fetched 20.1 MB in 3s (6,388 kB/s) 2024-01-27T23:17:16.862 INFO:teuthology.orchestra.run.smithi099.stdout:Reading package lists... 2024-01-27T23:17:16.915 DEBUG:teuthology.orchestra.run.smithi099:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-27T23:17:16.918 INFO:teuthology.orchestra.run.smithi142.stdout:Reading package lists... 2024-01-27T23:17:16.972 DEBUG:teuthology.orchestra.run.smithi142:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-27T23:17:17.000 INFO:teuthology.orchestra.run.smithi099.stdout:Reading package lists... 2024-01-27T23:17:17.097 INFO:teuthology.orchestra.run.smithi142.stdout:Reading package lists... 2024-01-27T23:17:17.281 INFO:teuthology.orchestra.run.smithi099.stdout:Building dependency tree... 2024-01-27T23:17:17.281 INFO:teuthology.orchestra.run.smithi099.stdout:Reading state information... 2024-01-27T23:17:17.360 INFO:teuthology.orchestra.run.smithi142.stdout:Building dependency tree... 2024-01-27T23:17:17.360 INFO:teuthology.orchestra.run.smithi142.stdout:Reading state information... 2024-01-27T23:17:17.496 INFO:teuthology.orchestra.run.smithi099.stdout:The following additional packages will be installed: 2024-01-27T23:17:17.496 INFO:teuthology.orchestra.run.smithi099.stdout: linux-generic linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-27T23:17:17.496 INFO:teuthology.orchestra.run.smithi099.stdout: linux-headers-generic linux-image-4.15.0-213-generic 2024-01-27T23:17:17.496 INFO:teuthology.orchestra.run.smithi099.stdout: linux-modules-4.15.0-213-generic linux-modules-extra-4.15.0-213-generic 2024-01-27T23:17:17.498 INFO:teuthology.orchestra.run.smithi099.stdout:Suggested packages: 2024-01-27T23:17:17.498 INFO:teuthology.orchestra.run.smithi099.stdout: fdutils linux-doc-4.15.0 | linux-source-4.15.0 linux-tools 2024-01-27T23:17:17.498 INFO:teuthology.orchestra.run.smithi099.stdout:Recommended packages: 2024-01-27T23:17:17.498 INFO:teuthology.orchestra.run.smithi099.stdout: thermald 2024-01-27T23:17:17.562 INFO:teuthology.orchestra.run.smithi099.stdout:The following NEW packages will be installed: 2024-01-27T23:17:17.562 INFO:teuthology.orchestra.run.smithi099.stdout: linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-27T23:17:17.562 INFO:teuthology.orchestra.run.smithi099.stdout: linux-image-4.15.0-213-generic linux-modules-4.15.0-213-generic 2024-01-27T23:17:17.562 INFO:teuthology.orchestra.run.smithi099.stdout: linux-modules-extra-4.15.0-213-generic 2024-01-27T23:17:17.564 INFO:teuthology.orchestra.run.smithi099.stdout:The following packages will be upgraded: 2024-01-27T23:17:17.565 INFO:teuthology.orchestra.run.smithi099.stdout: linux-generic linux-headers-generic linux-image-generic 2024-01-27T23:17:17.577 INFO:teuthology.orchestra.run.smithi142.stdout:The following additional packages will be installed: 2024-01-27T23:17:17.577 INFO:teuthology.orchestra.run.smithi142.stdout: linux-generic linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-27T23:17:17.578 INFO:teuthology.orchestra.run.smithi142.stdout: linux-headers-generic linux-image-4.15.0-213-generic 2024-01-27T23:17:17.578 INFO:teuthology.orchestra.run.smithi142.stdout: linux-modules-4.15.0-213-generic linux-modules-extra-4.15.0-213-generic 2024-01-27T23:17:17.580 INFO:teuthology.orchestra.run.smithi142.stdout:Suggested packages: 2024-01-27T23:17:17.580 INFO:teuthology.orchestra.run.smithi142.stdout: fdutils linux-doc-4.15.0 | linux-source-4.15.0 linux-tools 2024-01-27T23:17:17.580 INFO:teuthology.orchestra.run.smithi142.stdout:Recommended packages: 2024-01-27T23:17:17.580 INFO:teuthology.orchestra.run.smithi142.stdout: thermald 2024-01-27T23:17:17.649 INFO:teuthology.orchestra.run.smithi142.stdout:The following NEW packages will be installed: 2024-01-27T23:17:17.649 INFO:teuthology.orchestra.run.smithi142.stdout: linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-27T23:17:17.649 INFO:teuthology.orchestra.run.smithi142.stdout: linux-image-4.15.0-213-generic linux-modules-4.15.0-213-generic 2024-01-27T23:17:17.649 INFO:teuthology.orchestra.run.smithi142.stdout: linux-modules-extra-4.15.0-213-generic 2024-01-27T23:17:17.651 INFO:teuthology.orchestra.run.smithi142.stdout:The following packages will be upgraded: 2024-01-27T23:17:17.652 INFO:teuthology.orchestra.run.smithi142.stdout: linux-generic linux-headers-generic linux-image-generic 2024-01-27T23:17:17.750 INFO:teuthology.orchestra.run.smithi099.stdout:3 upgraded, 5 newly installed, 0 to remove and 165 not upgraded. 2024-01-27T23:17:17.750 INFO:teuthology.orchestra.run.smithi099.stdout:Need to get 67.4 MB of archives. 2024-01-27T23:17:17.750 INFO:teuthology.orchestra.run.smithi099.stdout:After this operation, 351 MB of additional disk space will be used. 2024-01-27T23:17:17.750 INFO:teuthology.orchestra.run.smithi099.stdout:Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-4.15.0-213-generic amd64 4.15.0-213.224 [13.4 MB] 2024-01-27T23:17:17.837 INFO:teuthology.orchestra.run.smithi142.stdout:3 upgraded, 5 newly installed, 0 to remove and 165 not upgraded. 2024-01-27T23:17:17.837 INFO:teuthology.orchestra.run.smithi142.stdout:Need to get 67.4 MB of archives. 2024-01-27T23:17:17.837 INFO:teuthology.orchestra.run.smithi142.stdout:After this operation, 351 MB of additional disk space will be used. 2024-01-27T23:17:17.837 INFO:teuthology.orchestra.run.smithi142.stdout:Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-4.15.0-213-generic amd64 4.15.0-213.224 [13.4 MB] 2024-01-27T23:17:18.798 INFO:teuthology.orchestra.run.smithi099.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-4.15.0-213-generic amd64 4.15.0-213.224 [8,111 kB] 2024-01-27T23:17:18.891 INFO:teuthology.orchestra.run.smithi142.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-4.15.0-213-generic amd64 4.15.0-213.224 [8,111 kB] 2024-01-27T23:17:19.006 INFO:teuthology.orchestra.run.smithi099.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-extra-4.15.0-213-generic amd64 4.15.0-213.224 [33.7 MB] 2024-01-27T23:17:19.092 INFO:teuthology.orchestra.run.smithi142.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-extra-4.15.0-213-generic amd64 4.15.0-213.224 [33.7 MB] 2024-01-27T23:17:20.122 INFO:teuthology.orchestra.run.smithi099.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-generic amd64 4.15.0.213.196 [1,864 B] 2024-01-27T23:17:20.123 INFO:teuthology.orchestra.run.smithi099.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-generic amd64 4.15.0.213.196 [2,460 B] 2024-01-27T23:17:20.123 INFO:teuthology.orchestra.run.smithi099.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213 all 4.15.0-213.224 [11.0 MB] 2024-01-27T23:17:20.184 INFO:teuthology.orchestra.run.smithi142.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-generic amd64 4.15.0.213.196 [1,864 B] 2024-01-27T23:17:20.184 INFO:teuthology.orchestra.run.smithi142.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-generic amd64 4.15.0.213.196 [2,460 B] 2024-01-27T23:17:20.184 INFO:teuthology.orchestra.run.smithi142.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213 all 4.15.0-213.224 [11.0 MB] 2024-01-27T23:17:20.415 INFO:teuthology.orchestra.run.smithi099.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213-generic amd64 4.15.0-213.224 [1,250 kB] 2024-01-27T23:17:20.440 INFO:teuthology.orchestra.run.smithi099.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-generic amd64 4.15.0.213.196 [2,360 B] 2024-01-27T23:17:20.510 INFO:teuthology.orchestra.run.smithi142.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213-generic amd64 4.15.0-213.224 [1,250 kB] 2024-01-27T23:17:20.542 INFO:teuthology.orchestra.run.smithi142.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-generic amd64 4.15.0.213.196 [2,360 B] 2024-01-27T23:17:21.148 INFO:teuthology.orchestra.run.smithi099.stdout:Fetched 67.4 MB in 3s (23.6 MB/s) 2024-01-27T23:17:21.211 INFO:teuthology.orchestra.run.smithi142.stdout:Fetched 67.4 MB in 3s (23.5 MB/s) 2024-01-27T23:17:21.331 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package linux-modules-4.15.0-213-generic. 2024-01-27T23:17:21.398 INFO:teuthology.orchestra.run.smithi142.stdout:Selecting previously unselected package linux-modules-4.15.0-213-generic. 2024-01-27T23:17:22.275 INFO:teuthology.orchestra.run.smithi099.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 135963 files and directories currently installed.) 2024-01-27T23:17:22.279 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../0-linux-modules-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-27T23:17:22.340 INFO:teuthology.orchestra.run.smithi142.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 135963 files and directories currently installed.) 2024-01-27T23:17:22.344 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:22.347 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../0-linux-modules-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-27T23:17:22.411 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:24.087 INFO:teuthology.orchestra.run.smithi142.stdout:Selecting previously unselected package linux-image-4.15.0-213-generic. 2024-01-27T23:17:24.104 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../1-linux-image-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-27T23:17:24.145 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package linux-image-4.15.0-213-generic. 2024-01-27T23:17:24.161 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../1-linux-image-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-27T23:17:24.198 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:24.257 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:24.723 INFO:teuthology.orchestra.run.smithi142.stdout:Selecting previously unselected package linux-modules-extra-4.15.0-213-generic. 2024-01-27T23:17:24.738 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../2-linux-modules-extra-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-27T23:17:24.781 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:24.799 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package linux-modules-extra-4.15.0-213-generic. 2024-01-27T23:17:24.813 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../2-linux-modules-extra-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-27T23:17:24.848 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:28.544 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../3-linux-generic_4.15.0.213.196_amd64.deb ... 2024-01-27T23:17:28.651 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-27T23:17:28.663 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../3-linux-generic_4.15.0.213.196_amd64.deb ... 2024-01-27T23:17:28.788 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking linux-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-27T23:17:28.955 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../4-linux-image-generic_4.15.0.213.196_amd64.deb ... 2024-01-27T23:17:29.105 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-image-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-27T23:17:29.131 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../4-linux-image-generic_4.15.0.213.196_amd64.deb ... 2024-01-27T23:17:29.243 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking linux-image-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-27T23:17:29.425 INFO:teuthology.orchestra.run.smithi142.stdout:Selecting previously unselected package linux-headers-4.15.0-213. 2024-01-27T23:17:29.439 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../5-linux-headers-4.15.0-213_4.15.0-213.224_all.deb ... 2024-01-27T23:17:29.483 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-27T23:17:29.562 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package linux-headers-4.15.0-213. 2024-01-27T23:17:29.576 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../5-linux-headers-4.15.0-213_4.15.0-213.224_all.deb ... 2024-01-27T23:17:29.620 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-27T23:17:34.248 INFO:teuthology.orchestra.run.smithi142.stdout:Selecting previously unselected package linux-headers-4.15.0-213-generic. 2024-01-27T23:17:34.271 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../6-linux-headers-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-27T23:17:34.314 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:34.387 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package linux-headers-4.15.0-213-generic. 2024-01-27T23:17:34.411 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../6-linux-headers-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-27T23:17:34.453 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:36.687 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../7-linux-headers-generic_4.15.0.213.196_amd64.deb ... 2024-01-27T23:17:36.814 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-headers-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-27T23:17:36.854 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../7-linux-headers-generic_4.15.0.213.196_amd64.deb ... 2024-01-27T23:17:36.990 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking linux-headers-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-27T23:17:37.141 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:37.353 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:37.743 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:37.987 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:38.227 INFO:teuthology.orchestra.run.smithi142.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-4.15.0-200-generic 2024-01-27T23:17:38.227 INFO:teuthology.orchestra.run.smithi142.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-4.15.0-200-generic 2024-01-27T23:17:38.227 INFO:teuthology.orchestra.run.smithi142.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-4.15.0-213-generic 2024-01-27T23:17:38.227 INFO:teuthology.orchestra.run.smithi142.stdout:I: /initrd.img is now a symlink to boot/initrd.img-4.15.0-213-generic 2024-01-27T23:17:38.345 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:38.471 INFO:teuthology.orchestra.run.smithi099.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-4.15.0-200-generic 2024-01-27T23:17:38.471 INFO:teuthology.orchestra.run.smithi099.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-4.15.0-200-generic 2024-01-27T23:17:38.472 INFO:teuthology.orchestra.run.smithi099.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-4.15.0-213-generic 2024-01-27T23:17:38.472 INFO:teuthology.orchestra.run.smithi099.stdout:I: /initrd.img is now a symlink to boot/initrd.img-4.15.0-213-generic 2024-01-27T23:17:38.614 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:38.903 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-27T23:17:39.031 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-image-generic (4.15.0.213.196) ... 2024-01-27T23:17:39.157 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:39.157 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-27T23:17:39.283 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-headers-generic (4.15.0.213.196) ... 2024-01-27T23:17:39.309 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up linux-image-generic (4.15.0.213.196) ... 2024-01-27T23:17:39.409 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-generic (4.15.0.213.196) ... 2024-01-27T23:17:39.426 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:39.535 INFO:teuthology.orchestra.run.smithi142.stdout:Processing triggers for linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:39.535 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up linux-headers-generic (4.15.0.213.196) ... 2024-01-27T23:17:39.662 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up linux-generic (4.15.0.213.196) ... 2024-01-27T23:17:39.741 INFO:teuthology.orchestra.run.smithi142.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-01-27T23:17:39.742 INFO:teuthology.orchestra.run.smithi142.stdout:update-initramfs: Generating /boot/initrd.img-4.15.0-213-generic 2024-01-27T23:17:39.788 INFO:teuthology.orchestra.run.smithi099.stdout:Processing triggers for linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-27T23:17:40.006 INFO:teuthology.orchestra.run.smithi099.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-01-27T23:17:40.006 INFO:teuthology.orchestra.run.smithi099.stdout:update-initramfs: Generating /boot/initrd.img-4.15.0-213-generic 2024-01-27T23:17:56.495 INFO:teuthology.orchestra.run.smithi142.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-01-27T23:17:56.496 INFO:teuthology.orchestra.run.smithi142.stdout:Sourcing file `/etc/default/grub' 2024-01-27T23:17:56.518 INFO:teuthology.orchestra.run.smithi142.stdout:Generating grub configuration file ... 2024-01-27T23:17:56.898 INFO:teuthology.orchestra.run.smithi142.stdout:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-27T23:17:56.927 INFO:teuthology.orchestra.run.smithi142.stdout:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-27T23:17:56.946 INFO:teuthology.orchestra.run.smithi099.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-01-27T23:17:56.946 INFO:teuthology.orchestra.run.smithi099.stdout:Sourcing file `/etc/default/grub' 2024-01-27T23:17:56.986 INFO:teuthology.orchestra.run.smithi099.stdout:Generating grub configuration file ... 2024-01-27T23:17:57.247 INFO:teuthology.orchestra.run.smithi142.stdout:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-27T23:17:57.279 INFO:teuthology.orchestra.run.smithi142.stdout:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-27T23:17:57.353 INFO:teuthology.orchestra.run.smithi142.stdout:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-27T23:17:57.385 INFO:teuthology.orchestra.run.smithi142.stdout:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-27T23:17:57.408 INFO:teuthology.orchestra.run.smithi099.stdout:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-27T23:17:57.450 INFO:teuthology.orchestra.run.smithi099.stdout:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-27T23:17:57.787 INFO:teuthology.orchestra.run.smithi099.stdout:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-27T23:17:57.819 INFO:teuthology.orchestra.run.smithi099.stdout:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-27T23:17:57.894 INFO:teuthology.orchestra.run.smithi099.stdout:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-27T23:17:57.929 INFO:teuthology.orchestra.run.smithi099.stdout:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-27T23:17:58.329 INFO:teuthology.orchestra.run.smithi142.stdout:done 2024-01-27T23:17:58.774 DEBUG:teuthology.orchestra.run.smithi142:> dpkg -s linux-image-generic 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Package: linux-image-generic 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Status: install ok installed 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Priority: optional 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Section: kernel 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Installed-Size: 18 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Maintainer: Ubuntu Kernel Team 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Architecture: amd64 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Source: linux-meta 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Version: 4.15.0.213.196 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-27T23:17:58.840 INFO:teuthology.orchestra.run.smithi142.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-01-27T23:17:58.841 INFO:teuthology.orchestra.run.smithi142.stdout:Recommends: thermald 2024-01-27T23:17:58.841 INFO:teuthology.orchestra.run.smithi142.stdout:Description: Generic Linux kernel image 2024-01-27T23:17:58.841 INFO:teuthology.orchestra.run.smithi142.stdout: This package will always depend on the latest generic kernel image 2024-01-27T23:17:58.841 INFO:teuthology.orchestra.run.smithi142.stdout: available. 2024-01-27T23:17:58.841 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.15.0-200-generic Expected: 4.15.0-213-generic 2024-01-27T23:17:58.841 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-01-27T23:17:58.841 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-01-27T23:17:58.841 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-01-27T23:17:58.841 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi142.front.sepia.ceph.com, path=None, version=distro) 2024-01-27T23:17:58.842 DEBUG:teuthology.orchestra.run.smithi142:> sudo apt-get clean 2024-01-27T23:17:58.897 INFO:teuthology.orchestra.run.smithi099.stdout:done 2024-01-27T23:17:58.928 DEBUG:teuthology.orchestra.run.smithi142:> sudo apt-get update 2024-01-27T23:17:59.099 INFO:teuthology.orchestra.run.smithi142.stdout:Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease 2024-01-27T23:17:59.210 INFO:teuthology.orchestra.run.smithi142.stdout:Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-27T23:17:59.292 INFO:teuthology.orchestra.run.smithi142.stdout:Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 2024-01-27T23:17:59.378 INFO:teuthology.orchestra.run.smithi142.stdout:Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 2024-01-27T23:17:59.405 DEBUG:teuthology.orchestra.run.smithi099:> dpkg -s linux-image-generic 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Package: linux-image-generic 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Status: install ok installed 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Priority: optional 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Section: kernel 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Installed-Size: 18 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Maintainer: Ubuntu Kernel Team 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Architecture: amd64 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Source: linux-meta 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Version: 4.15.0.213.196 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-01-27T23:17:59.426 INFO:teuthology.orchestra.run.smithi099.stdout:Recommends: thermald 2024-01-27T23:17:59.427 INFO:teuthology.orchestra.run.smithi099.stdout:Description: Generic Linux kernel image 2024-01-27T23:17:59.427 INFO:teuthology.orchestra.run.smithi099.stdout: This package will always depend on the latest generic kernel image 2024-01-27T23:17:59.427 INFO:teuthology.orchestra.run.smithi099.stdout: available. 2024-01-27T23:17:59.427 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.15.0-200-generic Expected: 4.15.0-213-generic 2024-01-27T23:17:59.427 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-01-27T23:17:59.427 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-01-27T23:17:59.427 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-01-27T23:17:59.427 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi099.front.sepia.ceph.com, path=None, version=distro) 2024-01-27T23:17:59.427 DEBUG:teuthology.orchestra.run.smithi099:> sudo apt-get clean 2024-01-27T23:17:59.530 DEBUG:teuthology.orchestra.run.smithi099:> sudo apt-get update 2024-01-27T23:17:59.774 INFO:teuthology.orchestra.run.smithi099.stdout:Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease 2024-01-27T23:17:59.774 INFO:teuthology.orchestra.run.smithi099.stdout:Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-27T23:17:59.849 INFO:teuthology.orchestra.run.smithi099.stdout:Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 2024-01-27T23:17:59.931 INFO:teuthology.orchestra.run.smithi099.stdout:Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 2024-01-27T23:18:01.187 INFO:teuthology.orchestra.run.smithi142.stdout:Reading package lists... 2024-01-27T23:18:01.239 DEBUG:teuthology.orchestra.run.smithi142:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-27T23:18:01.323 INFO:teuthology.orchestra.run.smithi142.stdout:Reading package lists... 2024-01-27T23:18:01.594 INFO:teuthology.orchestra.run.smithi142.stdout:Building dependency tree... 2024-01-27T23:18:01.594 INFO:teuthology.orchestra.run.smithi142.stdout:Reading state information... 2024-01-27T23:18:01.801 INFO:teuthology.orchestra.run.smithi142.stdout:linux-image-generic is already the newest version (4.15.0.213.196). 2024-01-27T23:18:01.801 INFO:teuthology.orchestra.run.smithi142.stdout:The following packages were automatically installed and are no longer required: 2024-01-27T23:18:01.802 INFO:teuthology.orchestra.run.smithi142.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-01-27T23:18:01.802 INFO:teuthology.orchestra.run.smithi142.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-01-27T23:18:01.802 INFO:teuthology.orchestra.run.smithi142.stdout: linux-modules-extra-4.15.0-194-generic 2024-01-27T23:18:01.802 INFO:teuthology.orchestra.run.smithi142.stdout:Use 'sudo apt autoremove' to remove them. 2024-01-27T23:18:01.853 INFO:teuthology.orchestra.run.smithi142.stdout:0 upgraded, 0 newly installed, 0 to remove and 165 not upgraded. 2024-01-27T23:18:01.855 DEBUG:teuthology.orchestra.run.smithi142:> dpkg -s linux-image-generic 2024-01-27T23:18:01.858 INFO:teuthology.orchestra.run.smithi099.stdout:Reading package lists... 2024-01-27T23:18:01.877 INFO:teuthology.orchestra.run.smithi142.stdout:Package: linux-image-generic 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Status: install ok installed 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Priority: optional 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Section: kernel 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Installed-Size: 18 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Maintainer: Ubuntu Kernel Team 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Architecture: amd64 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Source: linux-meta 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Version: 4.15.0.213.196 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Recommends: thermald 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout:Description: Generic Linux kernel image 2024-01-27T23:18:01.878 INFO:teuthology.orchestra.run.smithi142.stdout: This package will always depend on the latest generic kernel image 2024-01-27T23:18:01.879 INFO:teuthology.orchestra.run.smithi142.stdout: available. 2024-01-27T23:18:01.879 DEBUG:teuthology.orchestra.run.smithi142:> mktemp 2024-01-27T23:18:01.911 DEBUG:teuthology.orchestra.run.smithi099:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-27T23:18:01.926 INFO:teuthology.orchestra.run.smithi142.stdout:/tmp/tmp.yheQwrYqQK 2024-01-27T23:18:01.926 DEBUG:teuthology.orchestra.run.smithi142:> sudo cp /boot/grub/grub.cfg /tmp/tmp.yheQwrYqQK 2024-01-27T23:18:01.984 DEBUG:teuthology.orchestra.run.smithi142:> sudo chmod 0666 /tmp/tmp.yheQwrYqQK 2024-01-27T23:18:01.993 INFO:teuthology.orchestra.run.smithi099.stdout:Reading package lists... 2024-01-27T23:18:02.131 DEBUG:teuthology.orchestra.remote:smithi142:/tmp/tmp.yheQwrYqQK is 10KB 2024-01-27T23:18:02.143 DEBUG:teuthology.orchestra.run.smithi142:> rm -fr /tmp/tmp.yheQwrYqQK 2024-01-27T23:18:02.149 DEBUG:teuthology.orchestra.run.smithi142:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-01-27T23:18:02.205 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:18:02.205 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-01-27T23:18:02.205 DEBUG:teuthology.orchestra.run.smithi142:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-01-27T23:18:02.258 INFO:teuthology.orchestra.run.smithi099.stdout:Building dependency tree... 2024-01-27T23:18:02.259 INFO:teuthology.orchestra.run.smithi099.stdout:Reading state information... 2024-01-27T23:18:02.280 INFO:teuthology.task.kernel:Distro Kernel Version: 4.15.0-213-generic 2024-01-27T23:18:02.280 DEBUG:teuthology.orchestra.run.smithi142:> sudo update-grub 2024-01-27T23:18:02.467 INFO:teuthology.orchestra.run.smithi099.stdout:linux-image-generic is already the newest version (4.15.0.213.196). 2024-01-27T23:18:02.468 INFO:teuthology.orchestra.run.smithi099.stdout:The following packages were automatically installed and are no longer required: 2024-01-27T23:18:02.468 INFO:teuthology.orchestra.run.smithi099.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-01-27T23:18:02.468 INFO:teuthology.orchestra.run.smithi099.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-01-27T23:18:02.468 INFO:teuthology.orchestra.run.smithi099.stdout: linux-modules-extra-4.15.0-194-generic 2024-01-27T23:18:02.468 INFO:teuthology.orchestra.run.smithi099.stdout:Use 'sudo apt autoremove' to remove them. 2024-01-27T23:18:02.522 INFO:teuthology.orchestra.run.smithi099.stdout:0 upgraded, 0 newly installed, 0 to remove and 165 not upgraded. 2024-01-27T23:18:02.524 DEBUG:teuthology.orchestra.run.smithi099:> dpkg -s linux-image-generic 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Package: linux-image-generic 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Status: install ok installed 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Priority: optional 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Section: kernel 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Installed-Size: 18 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Maintainer: Ubuntu Kernel Team 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Architecture: amd64 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Source: linux-meta 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Version: 4.15.0.213.196 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-27T23:18:02.546 INFO:teuthology.orchestra.run.smithi099.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-01-27T23:18:02.547 INFO:teuthology.orchestra.run.smithi099.stdout:Recommends: thermald 2024-01-27T23:18:02.547 INFO:teuthology.orchestra.run.smithi099.stdout:Description: Generic Linux kernel image 2024-01-27T23:18:02.547 INFO:teuthology.orchestra.run.smithi099.stdout: This package will always depend on the latest generic kernel image 2024-01-27T23:18:02.547 INFO:teuthology.orchestra.run.smithi099.stdout: available. 2024-01-27T23:18:02.547 DEBUG:teuthology.orchestra.run.smithi099:> mktemp 2024-01-27T23:18:02.594 INFO:teuthology.orchestra.run.smithi099.stdout:/tmp/tmp.w9lWD53co0 2024-01-27T23:18:02.595 DEBUG:teuthology.orchestra.run.smithi099:> sudo cp /boot/grub/grub.cfg /tmp/tmp.w9lWD53co0 2024-01-27T23:18:02.651 DEBUG:teuthology.orchestra.run.smithi099:> sudo chmod 0666 /tmp/tmp.w9lWD53co0 2024-01-27T23:18:02.791 DEBUG:teuthology.orchestra.remote:smithi099:/tmp/tmp.w9lWD53co0 is 10KB 2024-01-27T23:18:02.803 DEBUG:teuthology.orchestra.run.smithi099:> rm -fr /tmp/tmp.w9lWD53co0 2024-01-27T23:18:02.809 DEBUG:teuthology.orchestra.run.smithi099:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-01-27T23:18:02.867 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:18:02.867 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-01-27T23:18:02.867 DEBUG:teuthology.orchestra.run.smithi099:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-01-27T23:18:02.947 INFO:teuthology.task.kernel:Distro Kernel Version: 4.15.0-213-generic 2024-01-27T23:18:02.948 DEBUG:teuthology.orchestra.run.smithi099:> sudo update-grub 2024-01-27T23:18:03.556 INFO:teuthology.orchestra.run.smithi142.stderr:Sourcing file `/etc/default/grub' 2024-01-27T23:18:03.576 INFO:teuthology.orchestra.run.smithi142.stderr:Generating grub configuration file ... 2024-01-27T23:18:03.835 INFO:teuthology.orchestra.run.smithi142.stderr:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-27T23:18:03.847 INFO:teuthology.orchestra.run.smithi142.stderr:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-27T23:18:04.157 INFO:teuthology.orchestra.run.smithi142.stderr:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-27T23:18:04.170 INFO:teuthology.orchestra.run.smithi142.stderr:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-27T23:18:04.246 INFO:teuthology.orchestra.run.smithi142.stderr:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-27T23:18:04.259 INFO:teuthology.orchestra.run.smithi142.stderr:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-27T23:18:04.460 INFO:teuthology.orchestra.run.smithi099.stderr:Sourcing file `/etc/default/grub' 2024-01-27T23:18:04.471 INFO:teuthology.orchestra.run.smithi099.stderr:Generating grub configuration file ... 2024-01-27T23:18:04.729 INFO:teuthology.orchestra.run.smithi099.stderr:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-27T23:18:04.741 INFO:teuthology.orchestra.run.smithi099.stderr:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-27T23:18:04.878 INFO:teuthology.orchestra.run.smithi142.stderr:done 2024-01-27T23:18:04.880 DEBUG:teuthology.orchestra.run.smithi142:> sudo shutdown -r now 2024-01-27T23:18:05.044 INFO:teuthology.orchestra.run.smithi099.stderr:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-27T23:18:05.057 INFO:teuthology.orchestra.run.smithi099.stderr:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-27T23:18:05.133 INFO:teuthology.orchestra.run.smithi099.stderr:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-27T23:18:05.146 INFO:teuthology.orchestra.run.smithi099.stderr:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-27T23:18:05.760 INFO:teuthology.orchestra.run.smithi099.stderr:done 2024-01-27T23:18:05.761 DEBUG:teuthology.orchestra.run.smithi099:> sudo shutdown -r now 2024-01-27T23:18:34.910 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-01-27T23:18:34.911 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-01-27T23:18:34.912 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:18:35.812 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-01-27T23:18:35.812 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi099.front.sepia.ceph.com' 2024-01-27T23:18:35.812 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi099.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:19:10.396 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.99 2024-01-27T23:19:19.404 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi099.front.sepia.ceph.com' 2024-01-27T23:19:19.405 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi099.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:19:34.929 DEBUG:teuthology.orchestra.remote:timed out 2024-01-27T23:19:37.788 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.99 2024-01-27T23:19:43.932 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-01-27T23:19:43.933 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:19:44.021 DEBUG:teuthology.orchestra.run.smithi142:> true 2024-01-27T23:19:44.286 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-01-27T23:19:44.286 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "4.15.0-213-generic"... 2024-01-27T23:19:44.286 DEBUG:teuthology.orchestra.run.smithi142:> uname -r 2024-01-27T23:19:44.333 INFO:teuthology.orchestra.run.smithi142.stdout:4.15.0-213-generic 2024-01-27T23:19:44.333 DEBUG:teuthology.task.kernel:current kernel version is 4.15.0-213-generic vs 4.15.0-213-generic 2024-01-27T23:19:44.334 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-01-27T23:19:44.334 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-01-27T23:19:45.334 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-01-27T23:19:45.334 DEBUG:teuthology.orchestra.run.smithi142:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-01-27T23:19:45.371 INFO:teuthology.orchestra.run.smithi142.stdout:ttyS1 2024-01-27T23:19:45.390 DEBUG:teuthology.parallel:result is None 2024-01-27T23:19:49.789 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi099.front.sepia.ceph.com' 2024-01-27T23:19:49.789 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi099.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:19:49.871 DEBUG:teuthology.orchestra.run.smithi099:> true 2024-01-27T23:19:50.181 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi099.front.sepia.ceph.com' 2024-01-27T23:19:50.181 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "4.15.0-213-generic"... 2024-01-27T23:19:50.181 DEBUG:teuthology.orchestra.run.smithi099:> uname -r 2024-01-27T23:19:50.230 INFO:teuthology.orchestra.run.smithi099.stdout:4.15.0-213-generic 2024-01-27T23:19:50.231 DEBUG:teuthology.task.kernel:current kernel version is 4.15.0-213-generic vs 4.15.0-213-generic 2024-01-27T23:19:50.231 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-01-27T23:19:50.231 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-01-27T23:19:51.232 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-01-27T23:19:51.232 DEBUG:teuthology.orchestra.run.smithi099:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-01-27T23:19:51.268 INFO:teuthology.orchestra.run.smithi099.stdout:ttyS1 2024-01-27T23:19:51.299 DEBUG:teuthology.parallel:result is None 2024-01-27T23:19:51.300 INFO:teuthology.run_tasks:Running task internal.base... 2024-01-27T23:19:51.315 INFO:teuthology.task.internal:Creating test directory... 2024-01-27T23:19:51.315 DEBUG:teuthology.orchestra.run.smithi099:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-01-27T23:19:51.343 DEBUG:teuthology.orchestra.run.smithi142:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-01-27T23:19:51.350 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-01-27T23:19:51.357 INFO:teuthology.run_tasks:Running task internal.archive... 2024-01-27T23:19:51.390 INFO:teuthology.task.internal:Creating archive directory... 2024-01-27T23:19:51.391 DEBUG:teuthology.orchestra.run.smithi099:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-01-27T23:19:51.393 DEBUG:teuthology.orchestra.run.smithi142:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-01-27T23:19:51.412 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-01-27T23:19:51.449 INFO:teuthology.task.internal:Enabling coredump saving... 2024-01-27T23:19:51.449 DEBUG:teuthology.orchestra.run.smithi099:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-01-27T23:19:51.452 DEBUG:teuthology.orchestra.run.smithi142:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-01-27T23:19:51.474 INFO:teuthology.orchestra.run.smithi099.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-27T23:19:51.479 INFO:teuthology.orchestra.run.smithi142.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-27T23:19:51.481 INFO:teuthology.orchestra.run.smithi099.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-27T23:19:51.488 INFO:teuthology.orchestra.run.smithi142.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-27T23:19:51.490 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-01-27T23:19:51.496 INFO:teuthology.task.internal:Configuring sudo... 2024-01-27T23:19:51.497 DEBUG:teuthology.orchestra.run.smithi099:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-01-27T23:19:51.527 DEBUG:teuthology.orchestra.run.smithi142:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-01-27T23:19:51.544 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-01-27T23:19:51.553 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-01-27T23:19:51.553 DEBUG:teuthology.orchestra.run.smithi099:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-01-27T23:19:51.587 DEBUG:teuthology.orchestra.run.smithi142:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-01-27T23:19:51.596 DEBUG:teuthology.orchestra.run.smithi099:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-01-27T23:19:51.639 DEBUG:teuthology.orchestra.run.smithi099:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-01-27T23:19:51.687 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:19:51.687 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-01-27T23:19:51.755 DEBUG:teuthology.orchestra.run.smithi142:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-01-27T23:19:51.762 DEBUG:teuthology.orchestra.run.smithi142:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-01-27T23:19:51.812 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:19:51.812 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-01-27T23:19:51.878 DEBUG:teuthology.orchestra.run.smithi099:> sudo service rsyslog restart 2024-01-27T23:19:51.880 DEBUG:teuthology.orchestra.run.smithi142:> sudo service rsyslog restart 2024-01-27T23:19:51.963 INFO:teuthology.run_tasks:Running task internal.timer... 2024-01-27T23:19:51.971 INFO:teuthology.task.internal:Starting timer... 2024-01-27T23:19:51.971 INFO:teuthology.run_tasks:Running task pcp... 2024-01-27T23:19:52.002 INFO:teuthology.run_tasks:Running task selinux... 2024-01-27T23:19:52.035 DEBUG:teuthology.task.selinux:Excluding smithi099: OS 'ubuntu' does not support SELinux 2024-01-27T23:19:52.035 DEBUG:teuthology.task.selinux:Excluding smithi142: OS 'ubuntu' does not support SELinux 2024-01-27T23:19:52.035 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-01-27T23:19:52.036 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-01-27T23:19:52.036 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-01-27T23:19:52.036 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-01-27T23:19:52.069 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-01-27T23:19:52.073 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-01-27T23:19:52.183 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-01-27T23:19:52.198 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-01-27T23:19:52.199 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi099.front.sepia.ceph.com,smithi142.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-01-27T23:25:06.364 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi099.front.sepia.ceph.com'), Remote(name='ubuntu@smithi142.front.sepia.ceph.com')] 2024-01-27T23:25:06.365 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi099.front.sepia.ceph.com' 2024-01-27T23:25:06.366 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi099.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:25:06.448 DEBUG:teuthology.orchestra.run.smithi099:> true 2024-01-27T23:25:06.565 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi099.front.sepia.ceph.com' 2024-01-27T23:25:06.565 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-01-27T23:25:06.566 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:25:06.645 DEBUG:teuthology.orchestra.run.smithi142:> true 2024-01-27T23:25:06.765 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-01-27T23:25:06.765 INFO:teuthology.run_tasks:Running task clock... 2024-01-27T23:25:06.777 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-01-27T23:25:06.777 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-01-27T23:25:06.777 DEBUG:teuthology.orchestra.run.smithi099:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-27T23:25:06.779 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-01-27T23:25:06.780 DEBUG:teuthology.orchestra.run.smithi142:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-27T23:25:06.840 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: ntpd 4.2.8p10@1.3728-o (1): Starting 2024-01-27T23:25:06.840 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: Command line: ntpd -gq 2024-01-27T23:25:06.841 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: proto: precision = 0.123 usec (-23) 2024-01-27T23:25:06.841 INFO:teuthology.orchestra.run.smithi099.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-27T23:25:06.842 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-27T23:25:06.842 INFO:teuthology.orchestra.run.smithi099.stderr:restrict ::: KOD does nothing without LIMITED. 2024-01-27T23:25:06.843 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: restrict ::: KOD does nothing without LIMITED. 2024-01-27T23:25:06.843 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: Listen and drop on 0 v6wildcard [::]:123 2024-01-27T23:25:06.843 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-01-27T23:25:06.843 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: Listen normally on 2 lo 127.0.0.1:123 2024-01-27T23:25:06.843 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: Listen normally on 3 enp3s0f1 172.21.15.99:123 2024-01-27T23:25:06.843 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: Listen normally on 4 lo [::1]:123 2024-01-27T23:25:06.843 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d803%5]:123 2024-01-27T23:25:06.843 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:06 ntpd[14492]: Listening on routing socket on fd #22 for interface updates 2024-01-27T23:25:06.883 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: ntpd 4.2.8p10@1.3728-o (1): Starting 2024-01-27T23:25:06.883 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: Command line: ntpd -gq 2024-01-27T23:25:06.884 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: proto: precision = 0.120 usec (-23) 2024-01-27T23:25:06.885 INFO:teuthology.orchestra.run.smithi142.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-27T23:25:06.885 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-27T23:25:06.885 INFO:teuthology.orchestra.run.smithi142.stderr:restrict ::: KOD does nothing without LIMITED. 2024-01-27T23:25:06.886 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: restrict ::: KOD does nothing without LIMITED. 2024-01-27T23:25:06.886 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: Listen and drop on 0 v6wildcard [::]:123 2024-01-27T23:25:06.886 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-01-27T23:25:06.886 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: Listen normally on 2 lo 127.0.0.1:123 2024-01-27T23:25:06.887 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: Listen normally on 3 enp3s0f1 172.21.15.142:123 2024-01-27T23:25:06.887 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: Listen normally on 4 lo [::1]:123 2024-01-27T23:25:06.887 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6e0d%5]:123 2024-01-27T23:25:06.887 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:06 ntpd[14515]: Listening on routing socket on fd #22 for interface updates 2024-01-27T23:25:07.841 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:07 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:07.841 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:07 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:07.841 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:07 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:07.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:07 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:07.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:07 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:07.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:07 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:07.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:07 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:07.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:07 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:07.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:07 ntpd[14515]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:07.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:07 ntpd[14515]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:07.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:07 ntpd[14515]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:07.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:07 ntpd[14515]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:07.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:07 ntpd[14515]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:07.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:07 ntpd[14515]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:07.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:07 ntpd[14515]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:07.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:07 ntpd[14515]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:09.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:09.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:09.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:09.843 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:09.843 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:09.843 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:09.843 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:09.843 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:09.843 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:09.843 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:09.843 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:09.843 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:09 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:09.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:09.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:09.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:09.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:09.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:09.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:09.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:09.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:09.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:09.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:09.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:09.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:09 ntpd[14515]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:11.841 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:11.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:11 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:11.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:11.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:11.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:11.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:11.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:11.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:11.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:11.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:11.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:11.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:11.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:11.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:11 ntpd[14515]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:13.841 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:13 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:13.841 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:13 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:13.841 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:13 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:13.841 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:13 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:13.841 INFO:teuthology.orchestra.run.smithi099.stdout:27 Jan 23:25:13 ntpd[14492]: ntpd: time slew +0.002127 s 2024-01-27T23:25:13.842 INFO:teuthology.orchestra.run.smithi099.stdout:ntpd: time slew +0.002127s 2024-01-27T23:25:13.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:13 ntpd[14492]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-01-27T23:25:13.842 INFO:teuthology.orchestra.run.smithi099.stderr:27 Jan 23:25:13 ntpd[14492]: can't open /var/log/ntpstats/loopstats.20240127: Permission denied 2024-01-27T23:25:13.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:13 ntpd[14515]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:13.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:13 ntpd[14515]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:13.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:13 ntpd[14515]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:13.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:13 ntpd[14515]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:13.884 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:13 ntpd[14515]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-27T23:25:13.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:13 ntpd[14515]: can't open /var/log/ntpstats/rawstats.20240127: Permission denied 2024-01-27T23:25:13.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:13 ntpd[14515]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-27T23:25:13.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:13 ntpd[14515]: can't open /var/log/ntpstats/peerstats.20240127: Permission denied 2024-01-27T23:25:13.885 INFO:teuthology.orchestra.run.smithi142.stdout:27 Jan 23:25:13 ntpd[14515]: ntpd: time slew -0.002115 s 2024-01-27T23:25:13.885 INFO:teuthology.orchestra.run.smithi142.stdout:ntpd: time slew -0.002115s 2024-01-27T23:25:13.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:13 ntpd[14515]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-01-27T23:25:13.885 INFO:teuthology.orchestra.run.smithi142.stderr:27 Jan 23:25:13 ntpd[14515]: can't open /var/log/ntpstats/loopstats.20240127: Permission denied 2024-01-27T23:25:13.912 INFO:teuthology.orchestra.run.smithi099.stdout: remote refid st t when poll reach delay offset jitter 2024-01-27T23:25:13.912 INFO:teuthology.orchestra.run.smithi099.stdout:============================================================================== 2024-01-27T23:25:13.912 INFO:teuthology.orchestra.run.smithi099.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-27T23:25:13.912 INFO:teuthology.orchestra.run.smithi099.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-27T23:25:13.912 INFO:teuthology.orchestra.run.smithi099.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-27T23:25:13.913 INFO:teuthology.orchestra.run.smithi099.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-27T23:25:13.939 INFO:teuthology.orchestra.run.smithi142.stdout: remote refid st t when poll reach delay offset jitter 2024-01-27T23:25:13.940 INFO:teuthology.orchestra.run.smithi142.stdout:============================================================================== 2024-01-27T23:25:13.940 INFO:teuthology.orchestra.run.smithi142.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-27T23:25:13.940 INFO:teuthology.orchestra.run.smithi142.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-27T23:25:13.940 INFO:teuthology.orchestra.run.smithi142.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-27T23:25:13.940 INFO:teuthology.orchestra.run.smithi142.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-27T23:25:13.941 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-01-27T23:25:13.951 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-01-27T23:25:13.951 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:25:13.951 DEBUG:teuthology.orchestra.run.smithi099:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:25:13.958 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-01-27T23:25:13.958 DEBUG:teuthology.orchestra.run.smithi099:> stat /dev/vg_nvme/lv_1 2024-01-27T23:25:14.008 INFO:teuthology.orchestra.run.smithi099.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-01-27T23:25:14.008 INFO:teuthology.orchestra.run.smithi099.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:25:14.008 INFO:teuthology.orchestra.run.smithi099.stdout:Device: 6h/6d Inode: 340 Links: 1 2024-01-27T23:25:14.008 INFO:teuthology.orchestra.run.smithi099.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:25:14.008 INFO:teuthology.orchestra.run.smithi099.stdout:Access: 2024-01-27 23:23:42.838914258 +0000 2024-01-27T23:25:14.008 INFO:teuthology.orchestra.run.smithi099.stdout:Modify: 2024-01-27 23:23:42.834914393 +0000 2024-01-27T23:25:14.008 INFO:teuthology.orchestra.run.smithi099.stdout:Change: 2024-01-27 23:23:42.834914393 +0000 2024-01-27T23:25:14.008 INFO:teuthology.orchestra.run.smithi099.stdout: Birth: - 2024-01-27T23:25:14.009 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-01-27T23:25:14.062 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records in 2024-01-27T23:25:14.063 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records out 2024-01-27T23:25:14.063 INFO:teuthology.orchestra.run.smithi099.stderr:512 bytes copied, 0.000311804 s, 1.6 MB/s 2024-01-27T23:25:14.064 DEBUG:teuthology.orchestra.run.smithi099:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-01-27T23:25:14.113 DEBUG:teuthology.orchestra.run.smithi099:> stat /dev/vg_nvme/lv_2 2024-01-27T23:25:14.164 INFO:teuthology.orchestra.run.smithi099.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-01-27T23:25:14.164 INFO:teuthology.orchestra.run.smithi099.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:25:14.164 INFO:teuthology.orchestra.run.smithi099.stdout:Device: 6h/6d Inode: 346 Links: 1 2024-01-27T23:25:14.164 INFO:teuthology.orchestra.run.smithi099.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:25:14.164 INFO:teuthology.orchestra.run.smithi099.stdout:Access: 2024-01-27 23:23:43.298898712 +0000 2024-01-27T23:25:14.164 INFO:teuthology.orchestra.run.smithi099.stdout:Modify: 2024-01-27 23:23:43.146903849 +0000 2024-01-27T23:25:14.164 INFO:teuthology.orchestra.run.smithi099.stdout:Change: 2024-01-27 23:23:43.146903849 +0000 2024-01-27T23:25:14.164 INFO:teuthology.orchestra.run.smithi099.stdout: Birth: - 2024-01-27T23:25:14.165 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-01-27T23:25:14.218 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records in 2024-01-27T23:25:14.219 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records out 2024-01-27T23:25:14.219 INFO:teuthology.orchestra.run.smithi099.stderr:512 bytes copied, 0.000377927 s, 1.4 MB/s 2024-01-27T23:25:14.219 DEBUG:teuthology.orchestra.run.smithi099:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-01-27T23:25:14.268 DEBUG:teuthology.orchestra.run.smithi099:> stat /dev/vg_nvme/lv_3 2024-01-27T23:25:14.316 INFO:teuthology.orchestra.run.smithi099.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-01-27T23:25:14.316 INFO:teuthology.orchestra.run.smithi099.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:25:14.316 INFO:teuthology.orchestra.run.smithi099.stdout:Device: 6h/6d Inode: 352 Links: 1 2024-01-27T23:25:14.316 INFO:teuthology.orchestra.run.smithi099.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:25:14.316 INFO:teuthology.orchestra.run.smithi099.stdout:Access: 2024-01-27 23:23:43.426894387 +0000 2024-01-27T23:25:14.316 INFO:teuthology.orchestra.run.smithi099.stdout:Modify: 2024-01-27 23:23:43.422894522 +0000 2024-01-27T23:25:14.316 INFO:teuthology.orchestra.run.smithi099.stdout:Change: 2024-01-27 23:23:43.422894522 +0000 2024-01-27T23:25:14.316 INFO:teuthology.orchestra.run.smithi099.stdout: Birth: - 2024-01-27T23:25:14.317 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-01-27T23:25:14.370 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records in 2024-01-27T23:25:14.371 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records out 2024-01-27T23:25:14.371 INFO:teuthology.orchestra.run.smithi099.stderr:512 bytes copied, 0.000359002 s, 1.4 MB/s 2024-01-27T23:25:14.372 DEBUG:teuthology.orchestra.run.smithi099:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-01-27T23:25:14.421 DEBUG:teuthology.orchestra.run.smithi099:> stat /dev/vg_nvme/lv_4 2024-01-27T23:25:14.472 INFO:teuthology.orchestra.run.smithi099.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-01-27T23:25:14.472 INFO:teuthology.orchestra.run.smithi099.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:25:14.472 INFO:teuthology.orchestra.run.smithi099.stdout:Device: 6h/6d Inode: 358 Links: 1 2024-01-27T23:25:14.472 INFO:teuthology.orchestra.run.smithi099.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:25:14.472 INFO:teuthology.orchestra.run.smithi099.stdout:Access: 2024-01-27 23:23:43.706884923 +0000 2024-01-27T23:25:14.472 INFO:teuthology.orchestra.run.smithi099.stdout:Modify: 2024-01-27 23:23:43.702885059 +0000 2024-01-27T23:25:14.472 INFO:teuthology.orchestra.run.smithi099.stdout:Change: 2024-01-27 23:23:43.702885059 +0000 2024-01-27T23:25:14.472 INFO:teuthology.orchestra.run.smithi099.stdout: Birth: - 2024-01-27T23:25:14.472 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-01-27T23:25:14.526 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records in 2024-01-27T23:25:14.526 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records out 2024-01-27T23:25:14.526 INFO:teuthology.orchestra.run.smithi099.stderr:512 bytes copied, 0.000280152 s, 1.8 MB/s 2024-01-27T23:25:14.527 DEBUG:teuthology.orchestra.run.smithi099:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-01-27T23:25:14.577 DEBUG:teuthology.orchestra.run.smithi099:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-01-27T23:25:14.671 INFO:teuthology.orchestra.run.smithi099.stdout:loop 2024-01-27T23:25:14.672 INFO:tasks.nvme_loop:Connecting nvme_loop smithi099:/dev/vg_nvme/lv_1... 2024-01-27T23:25:14.673 DEBUG:teuthology.orchestra.run.smithi099:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-01-27T23:25:14.693 INFO:teuthology.orchestra.run.smithi099.stdout:1 2024-01-27T23:25:14.721 INFO:teuthology.orchestra.run.smithi099.stdout:/dev/vg_nvme/lv_11 2024-01-27T23:25:14.740 INFO:tasks.nvme_loop:Connecting nvme_loop smithi099:/dev/vg_nvme/lv_2... 2024-01-27T23:25:14.740 DEBUG:teuthology.orchestra.run.smithi099:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-01-27T23:25:14.805 INFO:teuthology.orchestra.run.smithi099.stdout:1 2024-01-27T23:25:14.831 INFO:teuthology.orchestra.run.smithi099.stdout:/dev/vg_nvme/lv_21 2024-01-27T23:25:14.852 INFO:tasks.nvme_loop:Connecting nvme_loop smithi099:/dev/vg_nvme/lv_3... 2024-01-27T23:25:14.852 DEBUG:teuthology.orchestra.run.smithi099:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-01-27T23:25:14.919 INFO:teuthology.orchestra.run.smithi099.stdout:1 2024-01-27T23:25:14.948 INFO:teuthology.orchestra.run.smithi099.stdout:/dev/vg_nvme/lv_31 2024-01-27T23:25:14.969 INFO:tasks.nvme_loop:Connecting nvme_loop smithi099:/dev/vg_nvme/lv_4... 2024-01-27T23:25:14.970 DEBUG:teuthology.orchestra.run.smithi099:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-01-27T23:25:15.037 INFO:teuthology.orchestra.run.smithi099.stdout:1 2024-01-27T23:25:15.060 INFO:teuthology.orchestra.run.smithi099.stdout:/dev/vg_nvme/lv_41 2024-01-27T23:25:15.081 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:25:15.081 DEBUG:teuthology.orchestra.run.smithi099:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:25:15.131 DEBUG:teuthology.orchestra.run.smithi099:> sudo nvme list 2024-01-27T23:25:15.187 INFO:teuthology.orchestra.run.smithi099.stdout:Node SN Model Namespace Usage Format FW Rev 2024-01-27T23:25:15.187 INFO:teuthology.orchestra.run.smithi099.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-01-27T23:25:15.187 INFO:teuthology.orchestra.run.smithi099.stdout:/dev/nvme0n1 PHFT62040101400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-01-27T23:25:15.187 INFO:teuthology.orchestra.run.smithi099.stdout:/dev/nvme1n1 176dd18cf93d92cf Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-27T23:25:15.187 INFO:teuthology.orchestra.run.smithi099.stdout:/dev/nvme2n1 a1995f6392d4deee Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-27T23:25:15.187 INFO:teuthology.orchestra.run.smithi099.stdout:/dev/nvme3n1 703d669630ad769f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-27T23:25:15.187 INFO:teuthology.orchestra.run.smithi099.stdout:/dev/nvme4n1 d9b3f11ae0ae5bf9 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-27T23:25:15.188 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-27T23:25:15.188 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:25:15.188 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd of=/scratch_devs 2024-01-27T23:25:15.243 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:25:15.244 DEBUG:teuthology.orchestra.run.smithi142:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:25:15.250 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-01-27T23:25:15.250 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_1 2024-01-27T23:25:15.300 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-01-27T23:25:15.300 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:25:15.300 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 345 Links: 1 2024-01-27T23:25:15.300 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:25:15.300 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-01-27 23:23:43.066398788 +0000 2024-01-27T23:25:15.300 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-01-27 23:23:42.910402500 +0000 2024-01-27T23:25:15.300 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-01-27 23:23:42.910402500 +0000 2024-01-27T23:25:15.301 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-01-27T23:25:15.301 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-01-27T23:25:15.356 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-01-27T23:25:15.356 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-01-27T23:25:15.356 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000367635 s, 1.4 MB/s 2024-01-27T23:25:15.356 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-01-27T23:25:15.405 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_2 2024-01-27T23:25:15.455 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-01-27T23:25:15.456 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:25:15.456 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 351 Links: 1 2024-01-27T23:25:15.456 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:25:15.456 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-01-27 23:23:43.354391934 +0000 2024-01-27T23:25:15.456 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-01-27 23:23:43.194395742 +0000 2024-01-27T23:25:15.456 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-01-27 23:23:43.194395742 +0000 2024-01-27T23:25:15.456 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-01-27T23:25:15.456 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-01-27T23:25:15.510 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-01-27T23:25:15.511 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-01-27T23:25:15.511 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000288841 s, 1.8 MB/s 2024-01-27T23:25:15.511 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-01-27T23:25:15.561 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_3 2024-01-27T23:25:15.612 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-01-27T23:25:15.612 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:25:15.612 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 357 Links: 1 2024-01-27T23:25:15.612 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:25:15.612 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-01-27 23:23:43.494388603 +0000 2024-01-27T23:25:15.612 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-01-27 23:23:43.490388697 +0000 2024-01-27T23:25:15.612 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-01-27 23:23:43.490388697 +0000 2024-01-27T23:25:15.613 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-01-27T23:25:15.613 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-01-27T23:25:15.666 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-01-27T23:25:15.666 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-01-27T23:25:15.667 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000350893 s, 1.5 MB/s 2024-01-27T23:25:15.667 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-01-27T23:25:15.717 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_4 2024-01-27T23:25:15.770 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-01-27T23:25:15.770 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:25:15.770 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 363 Links: 1 2024-01-27T23:25:15.770 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:25:15.770 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-01-27 23:23:43.938378038 +0000 2024-01-27T23:25:15.770 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-01-27 23:23:43.786381654 +0000 2024-01-27T23:25:15.770 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-01-27 23:23:43.786381654 +0000 2024-01-27T23:25:15.770 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-01-27T23:25:15.771 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-01-27T23:25:15.826 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-01-27T23:25:15.827 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-01-27T23:25:15.827 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000366433 s, 1.4 MB/s 2024-01-27T23:25:15.828 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-01-27T23:25:15.877 DEBUG:teuthology.orchestra.run.smithi142:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-01-27T23:25:15.972 INFO:teuthology.orchestra.run.smithi142.stdout:loop 2024-01-27T23:25:15.973 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_1... 2024-01-27T23:25:15.973 DEBUG:teuthology.orchestra.run.smithi142:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-01-27T23:25:15.990 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-01-27T23:25:16.017 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_11 2024-01-27T23:25:16.037 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_2... 2024-01-27T23:25:16.037 DEBUG:teuthology.orchestra.run.smithi142:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-01-27T23:25:16.098 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-01-27T23:25:16.126 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_21 2024-01-27T23:25:16.148 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_3... 2024-01-27T23:25:16.149 DEBUG:teuthology.orchestra.run.smithi142:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-01-27T23:25:16.209 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-01-27T23:25:16.226 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_31 2024-01-27T23:25:16.248 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_4... 2024-01-27T23:25:16.248 DEBUG:teuthology.orchestra.run.smithi142:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-01-27T23:25:16.309 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-01-27T23:25:16.332 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_41 2024-01-27T23:25:16.349 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:25:16.349 DEBUG:teuthology.orchestra.run.smithi142:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:25:16.397 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme list 2024-01-27T23:25:16.450 INFO:teuthology.orchestra.run.smithi142.stdout:Node SN Model Namespace Usage Format FW Rev 2024-01-27T23:25:16.450 INFO:teuthology.orchestra.run.smithi142.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-01-27T23:25:16.450 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme0n1 CVFT6303009Y400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-01-27T23:25:16.450 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme1n1 787965ad563c63c5 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-27T23:25:16.450 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme2n1 4854d2ece30ff899 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-27T23:25:16.450 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme3n1 1a6a3686a26d5886 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-27T23:25:16.450 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme4n1 7a4866d78a52ff35 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-27T23:25:16.451 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-27T23:25:16.451 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:25:16.451 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/scratch_devs 2024-01-27T23:25:16.504 INFO:teuthology.run_tasks:Running task cephadm... 2024-01-27T23:25:16.573 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': 'a72a5dace2353a54147d37bd2699a2a482507966'} 2024-01-27T23:25:16.574 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 2024-01-27T23:25:16.574 INFO:tasks.cephadm:Cluster fsid is 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:16.574 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-01-27T23:25:16.574 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-01-27T23:25:16.574 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi099': '172.21.15.99', 'mon.smithi142': '172.21.15.142'} 2024-01-27T23:25:16.574 INFO:tasks.cephadm:Normalizing hostnames... 2024-01-27T23:25:16.575 DEBUG:teuthology.orchestra.run.smithi099:> sudo hostname $(hostname -s) 2024-01-27T23:25:16.591 DEBUG:teuthology.orchestra.run.smithi142:> sudo hostname $(hostname -s) 2024-01-27T23:25:16.607 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref a72a5dace2353a54147d37bd2699a2a482507966)... 2024-01-27T23:25:16.608 DEBUG:teuthology.orchestra.run.smithi099:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/a72a5dace2353a54147d37bd2699a2a482507966/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-01-27T23:25:16.797 INFO:teuthology.orchestra.run.smithi099.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Jan 27 23:25 /home/ubuntu/cephtest/cephadm 2024-01-27T23:25:16.797 DEBUG:teuthology.orchestra.run.smithi142:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/a72a5dace2353a54147d37bd2699a2a482507966/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-01-27T23:25:17.009 INFO:teuthology.orchestra.run.smithi142.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Jan 27 23:25 /home/ubuntu/cephtest/cephadm 2024-01-27T23:25:17.009 DEBUG:teuthology.orchestra.run.smithi099:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-01-27T23:25:17.018 DEBUG:teuthology.orchestra.run.smithi142:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-01-27T23:25:17.034 DEBUG:teuthology.orchestra.run.smithi099:> sudo mkdir -p /etc/ceph 2024-01-27T23:25:17.074 DEBUG:teuthology.orchestra.run.smithi142:> sudo mkdir -p /etc/ceph 2024-01-27T23:25:17.091 DEBUG:teuthology.orchestra.run.smithi099:> sudo chmod 777 /etc/ceph 2024-01-27T23:25:17.130 DEBUG:teuthology.orchestra.run.smithi142:> sudo chmod 777 /etc/ceph 2024-01-27T23:25:17.148 INFO:tasks.cephadm:Writing seed config... 2024-01-27T23:25:17.149 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-01-27T23:25:17.149 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-01-27T23:25:17.149 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-01-27T23:25:17.149 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-01-27T23:25:17.149 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-01-27T23:25:17.149 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-01-27T23:25:17.149 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-01-27T23:25:17.150 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-01-27T23:25:17.150 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:25:17.150 DEBUG:teuthology.orchestra.run.smithi099:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-01-27T23:25:17.181 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 ruleset-failure-domain=osd crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 54223e96-bd6b-11ee-95b2-87774f69a715 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-01-27T23:25:17.182 DEBUG:teuthology.orchestra.run.smithi099:mon.smithi099> sudo journalctl -f -n 0 -u ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mon.smithi099.service 2024-01-27T23:25:17.225 INFO:tasks.cephadm:Bootstrapping... 2024-01-27T23:25:17.225 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 -v bootstrap --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.99 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:25:17.594 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:-- Logs begin at Sun 2022-10-16 12:17:23 UTC. -- 2024-01-27T23:25:17.670 INFO:teuthology.orchestra.run.smithi099.stderr:-------------------------------------------------------------------------------- 2024-01-27T23:25:17.670 INFO:teuthology.orchestra.run.smithi099.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966', '-v', 'bootstrap', '--fsid', '54223e96-bd6b-11ee-95b2-87774f69a715', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-ip', '172.21.15.99', '--skip-admin-label'] 2024-01-27T23:25:17.670 INFO:teuthology.orchestra.run.smithi099.stderr:Verifying podman|docker is present... 2024-01-27T23:25:17.671 INFO:teuthology.orchestra.run.smithi099.stderr:Verifying lvm2 is present... 2024-01-27T23:25:17.671 INFO:teuthology.orchestra.run.smithi099.stderr:Verifying time synchronization is in place... 2024-01-27T23:25:17.679 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-01-27T23:25:17.688 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: inactive 2024-01-27T23:25:17.696 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-01-27T23:25:17.703 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: inactive 2024-01-27T23:25:17.712 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: enabled 2024-01-27T23:25:17.720 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: inactive 2024-01-27T23:25:17.728 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-01-27T23:25:17.737 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: inactive 2024-01-27T23:25:17.747 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: enabled 2024-01-27T23:25:17.756 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: active 2024-01-27T23:25:17.757 INFO:teuthology.orchestra.run.smithi099.stderr:Unit ntp.service is enabled and running 2024-01-27T23:25:17.757 INFO:teuthology.orchestra.run.smithi099.stderr:Repeating the final host check... 2024-01-27T23:25:17.757 INFO:teuthology.orchestra.run.smithi099.stderr:docker (/usr/bin/docker) is present 2024-01-27T23:25:17.757 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl is present 2024-01-27T23:25:17.757 INFO:teuthology.orchestra.run.smithi099.stderr:lvcreate is present 2024-01-27T23:25:17.765 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-01-27T23:25:17.773 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: inactive 2024-01-27T23:25:17.782 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-01-27T23:25:17.791 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: inactive 2024-01-27T23:25:17.800 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: enabled 2024-01-27T23:25:17.807 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: inactive 2024-01-27T23:25:17.816 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-01-27T23:25:17.825 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: inactive 2024-01-27T23:25:17.834 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: enabled 2024-01-27T23:25:17.842 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: active 2024-01-27T23:25:17.843 INFO:teuthology.orchestra.run.smithi099.stderr:Unit ntp.service is enabled and running 2024-01-27T23:25:17.843 INFO:teuthology.orchestra.run.smithi099.stderr:Host looks OK 2024-01-27T23:25:17.843 INFO:teuthology.orchestra.run.smithi099.stderr:Cluster fsid: 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:17.844 INFO:teuthology.orchestra.run.smithi099.stderr:Acquiring lock 139737502389528 on /run/cephadm/54223e96-bd6b-11ee-95b2-87774f69a715.lock 2024-01-27T23:25:17.844 INFO:teuthology.orchestra.run.smithi099.stderr:Lock 139737502389528 acquired on /run/cephadm/54223e96-bd6b-11ee-95b2-87774f69a715.lock 2024-01-27T23:25:17.844 INFO:teuthology.orchestra.run.smithi099.stderr:Verifying IP 172.21.15.99 port 3300 ... 2024-01-27T23:25:17.845 INFO:teuthology.orchestra.run.smithi099.stderr:Verifying IP 172.21.15.99 port 6789 ... 2024-01-27T23:25:17.845 INFO:teuthology.orchestra.run.smithi099.stderr:Base mon IP(s) is [172.21.15.99:3300, 172.21.15.99:6789], mon addrv is [v2:172.21.15.99:3300,v1:172.21.15.99:6789] 2024-01-27T23:25:17.851 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: default via 172.21.15.254 dev enp3s0f1 2024-01-27T23:25:17.851 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.99 metric 100 2024-01-27T23:25:17.851 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-01-27T23:25:17.851 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.99 2024-01-27T23:25:17.851 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.99 metric 100 2024-01-27T23:25:17.854 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-01-27T23:25:17.854 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 pref medium 2024-01-27T23:25:17.857 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-01-27T23:25:17.857 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: inet6 ::1/128 scope host 2024-01-27T23:25:17.857 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-01-27T23:25:17.858 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-01-27T23:25:17.858 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: inet6 fe80::ec4:7aff:fe8f:d803/64 scope link 2024-01-27T23:25:17.858 INFO:teuthology.orchestra.run.smithi099.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-01-27T23:25:17.859 INFO:teuthology.orchestra.run.smithi099.stderr:Mon IP `172.21.15.99` is in CIDR network `172.21.0.0/20` 2024-01-27T23:25:17.859 INFO:teuthology.orchestra.run.smithi099.stderr:Mon IP `172.21.15.99` is in CIDR network `172.21.0.0/20` 2024-01-27T23:25:17.859 INFO:teuthology.orchestra.run.smithi099.stderr:Mon IP `172.21.15.99` is in CIDR network `172.21.15.254/32` 2024-01-27T23:25:17.859 INFO:teuthology.orchestra.run.smithi099.stderr:Mon IP `172.21.15.99` is in CIDR network `172.21.15.254/32` 2024-01-27T23:25:17.859 INFO:teuthology.orchestra.run.smithi099.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.15.254/32', '172.21.15.254/32'] 2024-01-27T23:25:17.860 INFO:teuthology.orchestra.run.smithi099.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-01-27T23:25:17.861 INFO:teuthology.orchestra.run.smithi099.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966... 2024-01-27T23:25:18.235 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: a72a5dace2353a54147d37bd2699a2a482507966: Pulling from ceph-ci/ceph 2024-01-27T23:25:18.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: ea3366b8a902: Pulling fs layer 2024-01-27T23:25:18.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: 272062c903b6: Pulling fs layer 2024-01-27T23:25:19.001 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: ea3366b8a902: Verifying Checksum 2024-01-27T23:25:19.001 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: ea3366b8a902: Download complete 2024-01-27T23:25:20.814 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: 272062c903b6: Verifying Checksum 2024-01-27T23:25:20.814 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: 272062c903b6: Download complete 2024-01-27T23:25:21.464 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: ea3366b8a902: Pull complete 2024-01-27T23:25:31.492 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: 272062c903b6: Pull complete 2024-01-27T23:25:31.598 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: Digest: sha256:e3ad1a2b0241ab3f1cea37a2b2c536cd3eb3cb0a7576a757f1a81d5db9b1bc37 2024-01-27T23:25:31.646 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: Status: Downloaded newer image for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 2024-01-27T23:25:31.681 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/docker: quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 2024-01-27T23:25:41.453 INFO:teuthology.orchestra.run.smithi099.stderr:ceph: ceph version 16.2.14-508-ga72a5dac (a72a5dace2353a54147d37bd2699a2a482507966) pacific (stable) 2024-01-27T23:25:41.927 INFO:teuthology.orchestra.run.smithi099.stderr:Ceph version: ceph version 16.2.14-508-ga72a5dac (a72a5dace2353a54147d37bd2699a2a482507966) pacific (stable) 2024-01-27T23:25:41.928 INFO:teuthology.orchestra.run.smithi099.stderr:Extracting ceph user uid/gid from container image... 2024-01-27T23:25:42.746 INFO:teuthology.orchestra.run.smithi099.stderr:stat: 167 167 2024-01-27T23:25:43.232 INFO:teuthology.orchestra.run.smithi099.stderr:Creating initial keys... 2024-01-27T23:25:44.075 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-authtool: AQD4kLVlNLJKBRAA+oqEeiQzRqmvq1w77MnW9A== 2024-01-27T23:25:45.366 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-authtool: AQD5kLVlR8qhFhAATd+nZzfWzH1hMMnYI27Znw== 2024-01-27T23:25:46.703 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-authtool: AQD6kLVl36ixKhAA5nEEuGjH0vPhOOxivkfDrw== 2024-01-27T23:25:47.147 INFO:teuthology.orchestra.run.smithi099.stderr:Creating initial monmap... 2024-01-27T23:25:48.097 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2024-01-27T23:25:48.097 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:48.097 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-01-27T23:25:48.584 INFO:teuthology.orchestra.run.smithi099.stderr:monmaptool for smithi099 [v2:172.21.15.99:3300,v1:172.21.15.99:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-01-27T23:25:48.585 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/monmaptool: set fsid to 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:48.585 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-01-27T23:25:48.585 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:25:48.585 INFO:teuthology.orchestra.run.smithi099.stderr:Creating mon... 2024-01-27T23:25:49.493 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.497+0000 7fd713337880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-27T23:25:49.493 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.497+0000 7fd713337880 1 imported monmap: 2024-01-27T23:25:49.493 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: epoch 0 2024-01-27T23:25:49.493 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: fsid 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:49.493 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: last_changed 2024-01-27T23:25:48.110083+0000 2024-01-27T23:25:49.493 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: created 2024-01-27T23:25:48.110083+0000 2024-01-27T23:25:49.494 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2024-01-27T23:25:49.494 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: election_strategy: 1 2024-01-27T23:25:49.494 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.99:3300/0,v1:172.21.15.99:6789/0] mon.smithi099 2024-01-27T23:25:49.494 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.494 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.497+0000 7fd713337880 0 /usr/bin/ceph-mon: set fsid to 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:49.495 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: RocksDB version: 6.8.1 2024-01-27T23:25:49.495 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.495 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-27T23:25:49.495 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Compile date Jan 25 2024 2024-01-27T23:25:49.495 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: DB SUMMARY 2024-01-27T23:25:49.496 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.496 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi099/store.db dir, Total Num: 0, files: 2024-01-27T23:25:49.496 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.496 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi099/store.db: 2024-01-27T23:25:49.519 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.519 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.error_if_exists: 0 2024-01-27T23:25:49.519 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.create_if_missing: 1 2024-01-27T23:25:49.519 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.paranoid_checks: 1 2024-01-27T23:25:49.519 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.env: 0x55990b173080 2024-01-27T23:25:49.519 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.fs: Posix File System 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.info_log: 0x55990d0db380 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.statistics: (nil) 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.use_fsync: 0 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.max_log_file_size: 0 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.allow_fallocate: 1 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.use_direct_reads: 0 2024-01-27T23:25:49.520 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.db_log_dir: 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi099/store.db 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.max_subcompactions: 1 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.max_background_flushes: -1 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.write_buffer_manager: 0x55990d0e1980 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-27T23:25:49.521 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.unordered_write: 0 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.row_cache: None 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.wal_filter: None 2024-01-27T23:25:49.522 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.preserve_deletes: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.two_write_queues: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.atomic_flush: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.log_readahead_size: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.max_background_jobs: 2 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.max_background_compactions: -1 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-27T23:25:49.523 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.max_open_files: -1 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Compression algorithms supported: 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: kZSTD supported: 0 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: kXpressCompression supported: 0 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: kLZ4Compression supported: 1 2024-01-27T23:25:49.524 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: kBZip2Compression supported: 0 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: kZlibCompression supported: 1 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: kSnappyCompression supported: 1 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi099/store.db/MANIFEST-000001 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.merge_operator: 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.compaction_filter: None 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.501+0000 7fd713337880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55990cfefd30) 2024-01-27T23:25:49.525 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: index_type: 0 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: index_shortening: 1 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: checksum: 1 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: block_cache: 0x55990d026d10 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: block_cache_options: 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: capacity : 536870912 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2024-01-27T23:25:49.526 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: block_size: 4096 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: partition_filters: 0 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: verify_compression: 0 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: format_version: 2 2024-01-27T23:25:49.527 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: block_align: 0 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compression: NoCompression 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.num_levels: 7 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-27T23:25:49.528 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-27T23:25:49.529 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-27T23:25:49.530 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.table_properties_collectors: 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.inplace_update_support: 0 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-27T23:25:49.531 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.bloom_locality: 0 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.max_successive_merges: 0 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.ttl: 2592000 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi099/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.505+0000 7fd713337880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.509+0000 7fd713337880 4 rocksdb: DB pointer 0x55990d0ef800 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.509+0000 7fd6fc1aa700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.509+0000 7fd6fc1aa700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-27T23:25:49.532 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-27T23:25:49.533 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:25:49.534 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.535 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:25:49.536 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: 2024-01-27T23:25:49.536 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.509+0000 7fd713337880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2024-01-27T23:25:49.536 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.509+0000 7fd713337880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2024-01-27T23:25:49.536 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:25:49.509+0000 7fd713337880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi099 for mon.smithi099 2024-01-27T23:25:49.948 INFO:teuthology.orchestra.run.smithi099.stderr:create mon.smithi099 on 2024-01-27T23:25:50.069 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-01-27T23:25:50.170 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-54223e96-bd6b-11ee-95b2-87774f69a715.target -> /etc/systemd/system/ceph-54223e96-bd6b-11ee-95b2-87774f69a715.target. 2024-01-27T23:25:50.170 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-54223e96-bd6b-11ee-95b2-87774f69a715.target -> /etc/systemd/system/ceph-54223e96-bd6b-11ee-95b2-87774f69a715.target. 2024-01-27T23:25:50.434 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Failed to reset failed state of unit ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mon.smithi099.service: Unit ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mon.smithi099.service is not loaded. 2024-01-27T23:25:50.442 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Created symlink /etc/systemd/system/ceph-54223e96-bd6b-11ee-95b2-87774f69a715.target.wants/ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mon.smithi099.service -> /etc/systemd/system/ceph-54223e96-bd6b-11ee-95b2-87774f69a715@.service. 2024-01-27T23:25:50.579 INFO:teuthology.orchestra.run.smithi099.stderr:firewalld does not appear to be present 2024-01-27T23:25:50.579 INFO:teuthology.orchestra.run.smithi099.stderr:Not possible to enable service . firewalld.service is not available 2024-01-27T23:25:50.579 INFO:teuthology.orchestra.run.smithi099.stderr:Waiting for mon to start... 2024-01-27T23:25:50.579 INFO:teuthology.orchestra.run.smithi099.stderr:Waiting for mon... 2024-01-27T23:25:51.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:50 smithi099 systemd[1]: Started Ceph mon.smithi099 for 54223e96-bd6b-11ee-95b2-87774f69a715. 2024-01-27T23:25:52.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:51 smithi099 bash[15668]: cluster 2024-01-27T23:25:51.974843+0000 mon.smithi099 (mon.0) 0 : [INF] mkfs 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:52.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:51 smithi099 bash[15668]: cluster 2024-01-27T23:25:51.958911+0000 mon.smithi099 (mon.0) 1 : cluster [INF] mon.smithi099 is new leader, mons smithi099 in quorum (ranks 0) 2024-01-27T23:25:52.238 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: cluster: 2024-01-27T23:25:52.238 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: id: 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:52.238 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: health: HEALTH_OK 2024-01-27T23:25:52.239 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:25:52.239 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: services: 2024-01-27T23:25:52.239 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi099 (age 0.280351s) 2024-01-27T23:25:52.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mgr: no daemons active 2024-01-27T23:25:52.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2024-01-27T23:25:52.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:25:52.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: data: 2024-01-27T23:25:52.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2024-01-27T23:25:52.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2024-01-27T23:25:52.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2024-01-27T23:25:52.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: pgs: 2024-01-27T23:25:52.240 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:25:52.789 INFO:teuthology.orchestra.run.smithi099.stderr:mon is available 2024-01-27T23:25:52.789 INFO:teuthology.orchestra.run.smithi099.stderr:Assimilating anything we can from ceph.conf... 2024-01-27T23:25:53.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:52 smithi099 bash[15668]: cluster 2024-01-27T23:25:51.970280+0000 mon.smithi099 (mon.0) 2 : cluster [INF] mon.smithi099 is new leader, mons smithi099 in quorum (ranks 0) 2024-01-27T23:25:53.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:52 smithi099 bash[15668]: cluster 2024-01-27T23:25:51.971867+0000 mon.smithi099 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi099=[v2:172.21.15.99:3300/0,v1:172.21.15.99:6789/0]} removed_ranks: {} 2024-01-27T23:25:53.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:52 smithi099 bash[15668]: cluster 2024-01-27T23:25:51.979478+0000 mon.smithi099 (mon.0) 4 : cluster [DBG] fsmap 2024-01-27T23:25:53.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:52 smithi099 bash[15668]: cluster 2024-01-27T23:25:51.989454+0000 mon.smithi099 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-01-27T23:25:53.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:52 smithi099 bash[15668]: cluster 2024-01-27T23:25:51.990723+0000 mon.smithi099 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-01-27T23:25:53.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:52 smithi099 bash[15668]: audit 2024-01-27T23:25:52.250536+0000 mon.smithi099 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.99:0/2382992707' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-01-27T23:25:54.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:25:54.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: [global] 2024-01-27T23:25:54.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: fsid = 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:54.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.99:3300,v1:172.21.15.99:6789] 2024-01-27T23:25:54.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-01-27T23:25:54.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-01-27T23:25:54.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-01-27T23:25:54.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-01-27T23:25:54.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:25:54.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: [mgr] 2024-01-27T23:25:54.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-01-27T23:25:54.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:25:54.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: [osd] 2024-01-27T23:25:54.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-01-27T23:25:54.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-01-27T23:25:54.320 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:54 smithi099 bash[15668]: audit 2024-01-27T23:25:54.015149+0000 mon.smithi099 (mon.0) 8 : audit [INF] from='client.? 172.21.15.99:0/3598428954' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-01-27T23:25:54.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:54 smithi099 bash[15668]: audit 2024-01-27T23:25:54.018932+0000 mon.smithi099 (mon.0) 9 : audit [INF] from='client.? 172.21.15.99:0/3598428954' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-01-27T23:25:54.568 INFO:teuthology.orchestra.run.smithi099.stderr:Generating new minimal ceph.conf... 2024-01-27T23:25:56.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:55 smithi099 bash[15668]: audit 2024-01-27T23:25:55.743957+0000 mon.smithi099 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.99:0/3114917288' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:56.244 INFO:teuthology.orchestra.run.smithi099.stderr:Restarting the monitor... 2024-01-27T23:25:56.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:56 smithi099 systemd[1]: Stopping Ceph mon.smithi099 for 54223e96-bd6b-11ee-95b2-87774f69a715... 2024-01-27T23:25:56.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:56 smithi099 bash[16199]: Error response from daemon: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-mon.smithi099 2024-01-27T23:25:56.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:56 smithi099 bash[15668]: debug 2024-01-27T23:25:56.433+0000 7f93b8408700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi099 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-01-27T23:25:56.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:56 smithi099 bash[15668]: debug 2024-01-27T23:25:56.433+0000 7f93b8408700 -1 mon.smithi099@0(leader) e1 *** Got Signal Terminated *** 2024-01-27T23:25:57.133 INFO:teuthology.orchestra.run.smithi099.stderr:Setting public_network to 172.21.15.254/32,172.21.0.0/20 in mon config section 2024-01-27T23:25:57.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:57 smithi099 bash[16199]: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-mon-smithi099 2024-01-27T23:25:57.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:57 smithi099 systemd[1]: Stopped Ceph mon.smithi099 for 54223e96-bd6b-11ee-95b2-87774f69a715. 2024-01-27T23:25:57.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:57 smithi099 systemd[1]: Started Ceph mon.smithi099 for 54223e96-bd6b-11ee-95b2-87774f69a715. 2024-01-27T23:25:58.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.305+0000 7f705c57c880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-27T23:25:58.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.305+0000 7f705c57c880 0 ceph version 16.2.14-508-ga72a5dac (a72a5dace2353a54147d37bd2699a2a482507966) pacific (stable), process ceph-mon, pid 7 2024-01-27T23:25:58.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.305+0000 7f705c57c880 0 pidfile_write: ignore empty --pid-file 2024-01-27T23:25:58.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 0 load: jerasure load: lrc load: isa 2024-01-27T23:25:58.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: RocksDB version: 6.8.1 2024-01-27T23:25:58.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-27T23:25:58.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Compile date Jan 25 2024 2024-01-27T23:25:58.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: DB SUMMARY 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: CURRENT file: CURRENT 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: IDENTITY file: IDENTITY 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi099/store.db dir, Total Num: 1, files: 000004.sst 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi099/store.db: 000006.log size: 86519 ; 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.error_if_exists: 0 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.create_if_missing: 0 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.paranoid_checks: 1 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.env: 0x55933c55d080 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.fs: Posix File System 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.info_log: 0x55933d5e2520 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.statistics: (nil) 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.use_fsync: 0 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.max_log_file_size: 0 2024-01-27T23:25:58.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-27T23:25:58.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-27T23:25:58.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-27T23:25:58.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-27T23:25:58.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.allow_fallocate: 1 2024-01-27T23:25:58.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-27T23:25:58.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-27T23:25:58.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.use_direct_reads: 0 2024-01-27T23:25:58.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-27T23:25:58.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-27T23:25:58.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.db_log_dir: 2024-01-27T23:25:58.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi099/store.db 2024-01-27T23:25:58.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.max_subcompactions: 1 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.max_background_flushes: -1 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.write_buffer_manager: 0x55933e230480 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-27T23:25:58.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.unordered_write: 0 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.row_cache: None 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.wal_filter: None 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-27T23:25:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.preserve_deletes: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.two_write_queues: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.atomic_flush: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.log_readahead_size: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.max_background_jobs: 2 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.max_background_compactions: -1 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-27T23:25:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.max_open_files: -1 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Compression algorithms supported: 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: kZSTD supported: 0 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: kXpressCompression supported: 0 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: kLZ4Compression supported: 1 2024-01-27T23:25:58.578 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: kBZip2Compression supported: 0 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: kZlibCompression supported: 1 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: kSnappyCompression supported: 1 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.309+0000 7f705c57c880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi099/store.db/MANIFEST-000005 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.merge_operator: 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_filter: None 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55933d585d28) 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: cache_index_and_filter_blocks: 1 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-27T23:25:58.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: pin_top_level_index_and_filter: 1 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: index_type: 0 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: data_block_index_type: 0 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: index_shortening: 1 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: data_block_hash_table_util_ratio: 0.750000 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: hash_index_allow_collision: 1 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: checksum: 1 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: no_block_cache: 0 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: block_cache: 0x55933d5bcf10 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: block_cache_name: BinnedLRUCache 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: block_cache_options: 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: capacity : 536870912 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: num_shard_bits : 4 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: strict_capacity_limit : 0 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: high_pri_pool_ratio: 0.000 2024-01-27T23:25:58.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: block_cache_compressed: (nil) 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: persistent_cache: (nil) 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: block_size: 4096 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: block_size_deviation: 10 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: block_restart_interval: 16 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: index_block_restart_interval: 1 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: metadata_block_size: 4096 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: partition_filters: 0 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: use_delta_encoding: 1 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: whole_key_filtering: 1 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: verify_compression: 0 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: read_amp_bytes_per_bit: 0 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: format_version: 2 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: enable_index_compression: 1 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: block_align: 0 2024-01-27T23:25:58.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compression: NoCompression 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.num_levels: 7 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-27T23:25:58.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-27T23:25:58.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-27T23:25:58.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.table_properties_collectors: 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.inplace_update_support: 0 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.bloom_locality: 0 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.max_successive_merges: 0 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-27T23:25:58.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.ttl: 2592000 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi099/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 5, log_number is 4,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706397958319021, "job": 1, "event": "recovery_started", "log_files": [6]} 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706397958320124, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83392, "table_properties": {"data_size": 81659, "index_size": 338, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 0, "filter_size": 581, "raw_key_size": 9331, "raw_average_key_size": 47, "raw_value_size": 76171, "raw_average_value_size": 384, "num_data_blocks": 11, "num_entries": 198, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1706397958, "oldest_key_time": 3, "file_creation_time": 0}} 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.313+0000 7f705c57c880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706397958320733, "job": 1, "event": "recovery_finished"} 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.317+0000 7f705c57c880 4 rocksdb: DB pointer 0x55933d685800 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.317+0000 7f704336e700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-27T23:25:58.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.317+0000 7f704336e700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ** DB Stats ** 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ** Compaction Stats [default] ** 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: L0 2/0 83.13 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 106.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Sum 2/0 83.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 106.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 106.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:58.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ** Compaction Stats [default] ** 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 106.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Cumulative compaction: 0.00 GB write, 15.94 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Interval compaction: 0.00 GB write, 15.94 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ** Compaction Stats [default] ** 2024-01-27T23:25:58.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:25:58.589 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:58.589 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: L0 2/0 83.13 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 106.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:58.589 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Sum 2/0 83.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 106.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:58.589 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-27T23:25:58.589 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ** Compaction Stats [default] ** 2024-01-27T23:25:58.589 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 106.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Cumulative compaction: 0.00 GB write, 15.84 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.317+0000 7f705c57c880 0 starting mon.smithi099 rank 0 at public addrs [v2:172.21.15.99:3300/0,v1:172.21.15.99:6789/0] at bind addrs [v2:172.21.15.99:3300/0,v1:172.21.15.99:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi099 fsid 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.321+0000 7f705c57c880 1 mon.smithi099@-1(???) e1 preinit fsid 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:58.590 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.321+0000 7f705c57c880 0 mon.smithi099@-1(???).mds e1 new map 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.321+0000 7f705c57c880 0 mon.smithi099@-1(???).mds e1 print_map 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: e1 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: enable_multiple, ever_enabled_multiple: 1,1 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: legacy client fscid: -1 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: No filesystems configured 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.321+0000 7f705c57c880 0 mon.smithi099@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.321+0000 7f705c57c880 0 mon.smithi099@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: audit 2024-01-27T23:25:55.743957+0000 mon.smithi099 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.99:0/3114917288' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: debug 2024-01-27T23:25:58.321+0000 7f705c57c880 1 mon.smithi099@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: cluster 2024-01-27T23:25:58.332147+0000 mon.smithi099 (mon.0) 1 : cluster [INF] mon.smithi099 is new leader, mons smithi099 in quorum (ranks 0) 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: cluster 2024-01-27T23:25:58.332235+0000 mon.smithi099 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi099=[v2:172.21.15.99:3300/0,v1:172.21.15.99:6789/0]} removed_ranks: {} 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: cluster 2024-01-27T23:25:58.332741+0000 mon.smithi099 (mon.0) 3 : cluster [DBG] fsmap 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: cluster 2024-01-27T23:25:58.332799+0000 mon.smithi099 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-01-27T23:25:58.591 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:58 smithi099 bash[16328]: cluster 2024-01-27T23:25:58.333274+0000 mon.smithi099 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-01-27T23:25:59.210 INFO:teuthology.orchestra.run.smithi099.stderr:Wrote config to /etc/ceph/ceph.conf 2024-01-27T23:25:59.210 INFO:teuthology.orchestra.run.smithi099.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:25:59.210 INFO:teuthology.orchestra.run.smithi099.stderr:Creating mgr... 2024-01-27T23:25:59.211 INFO:teuthology.orchestra.run.smithi099.stderr:Verifying port 9283 ... 2024-01-27T23:25:59.354 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Failed to reset failed state of unit ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mgr.smithi099.hzjdah.service: Unit ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mgr.smithi099.hzjdah.service is not loaded. 2024-01-27T23:25:59.362 INFO:teuthology.orchestra.run.smithi099.stderr:systemctl: Created symlink /etc/systemd/system/ceph-54223e96-bd6b-11ee-95b2-87774f69a715.target.wants/ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mgr.smithi099.hzjdah.service -> /etc/systemd/system/ceph-54223e96-bd6b-11ee-95b2-87774f69a715@.service. 2024-01-27T23:25:59.493 INFO:teuthology.orchestra.run.smithi099.stderr:firewalld does not appear to be present 2024-01-27T23:25:59.493 INFO:teuthology.orchestra.run.smithi099.stderr:Not possible to enable service . firewalld.service is not available 2024-01-27T23:25:59.494 INFO:teuthology.orchestra.run.smithi099.stderr:firewalld does not appear to be present 2024-01-27T23:25:59.494 INFO:teuthology.orchestra.run.smithi099.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2024-01-27T23:25:59.494 INFO:teuthology.orchestra.run.smithi099.stderr:Waiting for mgr to start... 2024-01-27T23:25:59.494 INFO:teuthology.orchestra.run.smithi099.stderr:Waiting for mgr... 2024-01-27T23:25:59.820 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:25:59 smithi099 bash[16328]: audit 2024-01-27T23:25:58.658005+0000 mon.smithi099 (mon.0) 6 : audit [INF] from='client.? 172.21.15.99:0/4272986538' entity='client.admin' 2024-01-27T23:26:01.153 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:26:01.154 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: { 2024-01-27T23:26:01.154 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "fsid": "54223e96-bd6b-11ee-95b2-87774f69a715", 2024-01-27T23:26:01.160 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "health": { 2024-01-27T23:26:01.160 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-27T23:26:01.160 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "checks": {}, 2024-01-27T23:26:01.160 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "mutes": [] 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "quorum": [ 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 0 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: ], 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "smithi099" 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: ], 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "quorum_age": 2, 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "monmap": { 2024-01-27T23:26:01.161 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "osdmap": { 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-27T23:26:01.162 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "pgmap": { 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "fsmap": { 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "available": false, 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "modules": [ 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "iostat", 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "nfs", 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "restful" 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: ], 2024-01-27T23:26:01.164 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:26:01.165 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:01.165 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "servicemap": { 2024-01-27T23:26:01.165 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:01.165 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "modified": "2024-01-27T23:25:51.975541+0000", 2024-01-27T23:26:01.165 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:26:01.165 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:01.165 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-27T23:26:01.165 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: } 2024-01-27T23:26:01.320 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:01 smithi099 bash[16328]: audit 2024-01-27T23:26:01.165711+0000 mon.smithi099 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.99:0/3953154484' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-27T23:26:01.684 INFO:teuthology.orchestra.run.smithi099.stderr:mgr not available, waiting (1/15)... 2024-01-27T23:26:05.002 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:26:05.003 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: { 2024-01-27T23:26:05.003 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "fsid": "54223e96-bd6b-11ee-95b2-87774f69a715", 2024-01-27T23:26:05.003 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "health": { 2024-01-27T23:26:05.003 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-27T23:26:05.003 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "checks": {}, 2024-01-27T23:26:05.003 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "mutes": [] 2024-01-27T23:26:05.003 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:05.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-27T23:26:05.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "quorum": [ 2024-01-27T23:26:05.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 0 2024-01-27T23:26:05.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: ], 2024-01-27T23:26:05.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-27T23:26:05.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "smithi099" 2024-01-27T23:26:05.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: ], 2024-01-27T23:26:05.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "quorum_age": 6, 2024-01-27T23:26:05.007 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "monmap": { 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "osdmap": { 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:05.008 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "pgmap": { 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "fsmap": { 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "available": false, 2024-01-27T23:26:05.009 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-27T23:26:05.011 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "modules": [ 2024-01-27T23:26:05.011 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "iostat", 2024-01-27T23:26:05.011 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "nfs", 2024-01-27T23:26:05.011 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "restful" 2024-01-27T23:26:05.011 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: ], 2024-01-27T23:26:05.011 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:26:05.011 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:05.011 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "servicemap": { 2024-01-27T23:26:05.011 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:05.012 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "modified": "2024-01-27T23:25:51.975541+0000", 2024-01-27T23:26:05.012 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:26:05.012 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:05.012 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-27T23:26:05.012 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: } 2024-01-27T23:26:05.320 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:05 smithi099 bash[16328]: audit 2024-01-27T23:26:05.013838+0000 mon.smithi099 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.99:0/253630768' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-27T23:26:05.482 INFO:teuthology.orchestra.run.smithi099.stderr:mgr not available, waiting (2/15)... 2024-01-27T23:26:07.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: cluster 2024-01-27T23:26:07.195759+0000 mon.smithi099 (mon.0) 9 : cluster [INF] Activating manager daemon smithi099.hzjdah 2024-01-27T23:26:07.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: cluster 2024-01-27T23:26:07.201786+0000 mon.smithi099 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi099.hzjdah(active, starting, since 0.00622998s) 2024-01-27T23:26:07.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: audit 2024-01-27T23:26:07.203368+0000 mon.smithi099 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.99:0/3399852432' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-27T23:26:07.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: audit 2024-01-27T23:26:07.203607+0000 mon.smithi099 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.99:0/3399852432' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-27T23:26:07.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: audit 2024-01-27T23:26:07.203932+0000 mon.smithi099 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.99:0/3399852432' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-27T23:26:07.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: audit 2024-01-27T23:26:07.204360+0000 mon.smithi099 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.99:0/3399852432' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi099"}]: dispatch 2024-01-27T23:26:07.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: audit 2024-01-27T23:26:07.205390+0000 mon.smithi099 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.99:0/3399852432' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr metadata", "who": "smithi099.hzjdah", "id": "smithi099.hzjdah"}]: dispatch 2024-01-27T23:26:07.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: cluster 2024-01-27T23:26:07.210609+0000 mon.smithi099 (mon.0) 16 : cluster [INF] Manager daemon smithi099.hzjdah is now available 2024-01-27T23:26:07.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: audit 2024-01-27T23:26:07.230285+0000 mon.smithi099 (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.99:0/3399852432' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:07.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: audit 2024-01-27T23:26:07.242873+0000 mon.smithi099 (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.99:0/3399852432' entity='mgr.smithi099.hzjdah' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi099.hzjdah/mirror_snapshot_schedule"}]: dispatch 2024-01-27T23:26:07.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:07 smithi099 bash[16328]: audit 2024-01-27T23:26:07.246212+0000 mon.smithi099 (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.99:0/3399852432' entity='mgr.smithi099.hzjdah' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi099.hzjdah/trash_purge_schedule"}]: dispatch 2024-01-27T23:26:08.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:08 smithi099 bash[16328]: audit 2024-01-27T23:26:07.251697+0000 mon.smithi099 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.99:0/3399852432' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:08.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:08 smithi099 bash[16328]: audit 2024-01-27T23:26:07.254865+0000 mon.smithi099 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.99:0/3399852432' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:08.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:08 smithi099 bash[16328]: cluster 2024-01-27T23:26:08.207723+0000 mon.smithi099 (mon.0) 22 : cluster [DBG] mgrmap e3: smithi099.hzjdah(active, since 1.01216s) 2024-01-27T23:26:09.084 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:26:09.084 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: { 2024-01-27T23:26:09.084 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "fsid": "54223e96-bd6b-11ee-95b2-87774f69a715", 2024-01-27T23:26:09.084 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "health": { 2024-01-27T23:26:09.084 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-27T23:26:09.084 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "checks": {}, 2024-01-27T23:26:09.084 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "mutes": [] 2024-01-27T23:26:09.084 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:09.084 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-27T23:26:09.090 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "quorum": [ 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 0 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: ], 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "smithi099" 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: ], 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "quorum_age": 10, 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "monmap": { 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "osdmap": { 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:09.091 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "pgmap": { 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-27T23:26:09.092 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "fsmap": { 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "available": true, 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "modules": [ 2024-01-27T23:26:09.093 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "iostat", 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "nfs", 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "restful" 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: ], 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "servicemap": { 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "modified": "2024-01-27T23:25:51.975541+0000", 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: }, 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-27T23:26:09.094 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: } 2024-01-27T23:26:09.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:09 smithi099 bash[16328]: audit 2024-01-27T23:26:09.094857+0000 mon.smithi099 (mon.0) 23 : audit [DBG] from='client.? 172.21.15.99:0/3198235657' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-27T23:26:09.640 INFO:teuthology.orchestra.run.smithi099.stderr:mgr is available 2024-01-27T23:26:10.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:10 smithi099 bash[16328]: cluster 2024-01-27T23:26:09.339713+0000 mon.smithi099 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi099.hzjdah(active, since 2s) 2024-01-27T23:26:11.021 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:26:11.021 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: [global] 2024-01-27T23:26:11.021 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: fsid = 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:26:11.021 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-01-27T23:26:11.021 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-01-27T23:26:11.021 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-01-27T23:26:11.022 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-01-27T23:26:11.023 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:26:11.023 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: [mgr] 2024-01-27T23:26:11.023 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-01-27T23:26:11.023 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 2024-01-27T23:26:11.023 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: [osd] 2024-01-27T23:26:11.023 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-01-27T23:26:11.023 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-01-27T23:26:11.554 INFO:teuthology.orchestra.run.smithi099.stderr:Enabling cephadm module... 2024-01-27T23:26:11.570 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:11 smithi099 bash[16328]: audit 2024-01-27T23:26:11.032906+0000 mon.smithi099 (mon.0) 25 : audit [INF] from='client.? 172.21.15.99:0/3020291804' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-01-27T23:26:13.351 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:13 smithi099 bash[16328]: audit 2024-01-27T23:26:13.030058+0000 mon.smithi099 (mon.0) 26 : audit [INF] from='client.? 172.21.15.99:0/2599265472' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-01-27T23:26:14.390 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:14 smithi099 bash[16328]: audit 2024-01-27T23:26:13.084891+0000 mon.smithi099 (mon.0) 27 : audit [INF] from='client.? 172.21.15.99:0/2599265472' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-01-27T23:26:14.390 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:14 smithi099 bash[16328]: cluster 2024-01-27T23:26:13.084982+0000 mon.smithi099 (mon.0) 28 : cluster [DBG] mgrmap e5: smithi099.hzjdah(active, since 5s) 2024-01-27T23:26:15.174 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: { 2024-01-27T23:26:15.174 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 5, 2024-01-27T23:26:15.175 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "available": true, 2024-01-27T23:26:15.175 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "active_name": "smithi099.hzjdah", 2024-01-27T23:26:15.175 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_standby": 0 2024-01-27T23:26:15.175 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: } 2024-01-27T23:26:15.320 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:15 smithi099 bash[16328]: audit 2024-01-27T23:26:15.186829+0000 mon.smithi099 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.99:0/1724409706' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-01-27T23:26:15.674 INFO:teuthology.orchestra.run.smithi099.stderr:Waiting for the mgr to restart... 2024-01-27T23:26:15.674 INFO:teuthology.orchestra.run.smithi099.stderr:Waiting for mgr epoch 5... 2024-01-27T23:26:19.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: cluster 2024-01-27T23:26:19.447407+0000 mon.smithi099 (mon.0) 30 : cluster [INF] Active manager daemon smithi099.hzjdah restarted 2024-01-27T23:26:19.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: cluster 2024-01-27T23:26:19.447907+0000 mon.smithi099 (mon.0) 31 : cluster [INF] Activating manager daemon smithi099.hzjdah 2024-01-27T23:26:19.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: cluster 2024-01-27T23:26:19.454243+0000 mon.smithi099 (mon.0) 32 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-01-27T23:26:19.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: cluster 2024-01-27T23:26:19.454502+0000 mon.smithi099 (mon.0) 33 : cluster [DBG] mgrmap e6: smithi099.hzjdah(active, starting, since 0.00674637s) 2024-01-27T23:26:19.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: audit 2024-01-27T23:26:19.456863+0000 mon.smithi099 (mon.0) 34 : audit [DBG] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi099"}]: dispatch 2024-01-27T23:26:19.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: audit 2024-01-27T23:26:19.458657+0000 mon.smithi099 (mon.0) 35 : audit [DBG] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr metadata", "who": "smithi099.hzjdah", "id": "smithi099.hzjdah"}]: dispatch 2024-01-27T23:26:19.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: audit 2024-01-27T23:26:19.459765+0000 mon.smithi099 (mon.0) 36 : audit [DBG] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-27T23:26:19.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: audit 2024-01-27T23:26:19.460131+0000 mon.smithi099 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-27T23:26:19.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: audit 2024-01-27T23:26:19.460412+0000 mon.smithi099 (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-27T23:26:19.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: cluster 2024-01-27T23:26:19.464419+0000 mon.smithi099 (mon.0) 39 : cluster [INF] Manager daemon smithi099.hzjdah is now available 2024-01-27T23:26:19.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:19 smithi099 bash[16328]: audit 2024-01-27T23:26:19.487103+0000 mon.smithi099 (mon.0) 40 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:20.462 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: { 2024-01-27T23:26:20.462 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2024-01-27T23:26:20.462 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "initialized": true 2024-01-27T23:26:20.462 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: } 2024-01-27T23:26:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:20 smithi099 bash[16328]: cephadm 2024-01-27T23:26:19.482613+0000 mgr.smithi099.hzjdah (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-01-27T23:26:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:20 smithi099 bash[16328]: audit 2024-01-27T23:26:19.606682+0000 mon.smithi099 (mon.0) 41 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:20 smithi099 bash[16328]: audit 2024-01-27T23:26:19.608609+0000 mon.smithi099 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:20 smithi099 bash[16328]: audit 2024-01-27T23:26:19.611593+0000 mon.smithi099 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:20 smithi099 bash[16328]: audit 2024-01-27T23:26:19.615175+0000 mon.smithi099 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:20 smithi099 bash[16328]: audit 2024-01-27T23:26:19.647678+0000 mon.smithi099 (mon.0) 45 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi099.hzjdah/mirror_snapshot_schedule"}]: dispatch 2024-01-27T23:26:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:20 smithi099 bash[16328]: audit 2024-01-27T23:26:19.651492+0000 mon.smithi099 (mon.0) 46 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi099.hzjdah/trash_purge_schedule"}]: dispatch 2024-01-27T23:26:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:20 smithi099 bash[16328]: cluster 2024-01-27T23:26:20.459636+0000 mon.smithi099 (mon.0) 47 : cluster [DBG] mgrmap e7: smithi099.hzjdah(active, since 1.01188s) 2024-01-27T23:26:21.037 INFO:teuthology.orchestra.run.smithi099.stderr:mgr epoch 5 is available 2024-01-27T23:26:21.037 INFO:teuthology.orchestra.run.smithi099.stderr:Setting orchestrator backend to cephadm... 2024-01-27T23:26:22.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:21 smithi099 bash[16328]: audit 2024-01-27T23:26:20.457522+0000 mgr.smithi099.hzjdah (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-01-27T23:26:22.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:21 smithi099 bash[16328]: audit 2024-01-27T23:26:20.474503+0000 mgr.smithi099.hzjdah (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-01-27T23:26:22.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:22 smithi099 bash[16328]: cluster 2024-01-27T23:26:21.612711+0000 mon.smithi099 (mon.0) 48 : cluster [DBG] mgrmap e8: smithi099.hzjdah(active, since 2s) 2024-01-27T23:26:22.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:22 smithi099 bash[16328]: audit 2024-01-27T23:26:22.400563+0000 mon.smithi099 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:22.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:22 smithi099 bash[16328]: audit 2024-01-27T23:26:22.447012+0000 mon.smithi099 (mon.0) 50 : audit [DBG] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:24.070 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:23 smithi099 bash[16328]: audit 2024-01-27T23:26:22.390971+0000 mgr.smithi099.hzjdah (mgr.14116) 4 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:24.323 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: value unchanged 2024-01-27T23:26:24.830 INFO:teuthology.orchestra.run.smithi099.stderr:Generating ssh key... 2024-01-27T23:26:25.481 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:25 smithi099 bash[16328]: audit 2024-01-27T23:26:24.335468+0000 mgr.smithi099.hzjdah (mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:26.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:26 smithi099 bash[16328]: audit 2024-01-27T23:26:26.128136+0000 mgr.smithi099.hzjdah (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:26.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:26 smithi099 bash[16328]: cephadm 2024-01-27T23:26:26.128392+0000 mgr.smithi099.hzjdah (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2024-01-27T23:26:27.560 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:27 smithi099 bash[16328]: audit 2024-01-27T23:26:26.313592+0000 mon.smithi099 (mon.0) 51 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:27.560 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:27 smithi099 bash[16328]: audit 2024-01-27T23:26:26.316232+0000 mon.smithi099 (mon.0) 52 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:28.156 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDNB234VbblDOZcNyiNeiObxhBWM3RtNJlB+Hev17nGRsiQInqsP4IPvwOxQE4JKYjwsDEUWQqs0eCA2/eRpxKlMjzc+MwuOqz/gs9SlGiIzgb6seJI698PRem4orV58g4BBHtjx4z+GyPfEJLJwT6D8JfoNOUM61AOCU2H7oJAv920Jwv15SzFXVrULjTltQmbvDoOlzP1QUj8LWtFhKZOoDSZbjfg2lCf79jO0MlanN5H4E/qhzpy0+DLP+BzJDCJHPXv/geqCDUPwrxFdF0y0ePqOX50dA000LBWMU4uD9PiOq0Rny2fCK+W/s5evkKP9xq1nAAJyPHQnP1Be3qKq4mzlfxN3scgy/iqk8e0NN4H8YBedZ89Zu15PthD/yjdiaIVGOxtucQDXFvHSGB9YQTc5vOHhjJfX4CDhzSI2l7T37MHL2qzcunjO5pASkKEVLHymxz+jCwcO1iqqIEps5X4pngFLbey5aGRel6sHp4XuZyEtKkCniLp+nC6Cck= ceph-54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:26:28.695 INFO:teuthology.orchestra.run.smithi099.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-01-27T23:26:28.695 INFO:teuthology.orchestra.run.smithi099.stderr:Adding key to root@localhost authorized_keys... 2024-01-27T23:26:28.696 INFO:teuthology.orchestra.run.smithi099.stderr:Adding host smithi099... 2024-01-27T23:26:29.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:29 smithi099 bash[16328]: audit 2024-01-27T23:26:28.168350+0000 mgr.smithi099.hzjdah (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:30.570 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:30 smithi099 bash[16328]: audit 2024-01-27T23:26:30.073722+0000 mgr.smithi099.hzjdah (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi099", "addr": "172.21.15.99", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:30.884 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: Added host 'smithi099' with addr '172.21.15.99' 2024-01-27T23:26:31.683 INFO:teuthology.orchestra.run.smithi099.stderr:Deploying mon service with default placement... 2024-01-27T23:26:32.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:31 smithi099 bash[16328]: audit 2024-01-27T23:26:30.896543+0000 mon.smithi099 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:32.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:31 smithi099 bash[16328]: cephadm 2024-01-27T23:26:30.897049+0000 mgr.smithi099.hzjdah (mgr.14116) 10 : cephadm [INF] Added host smithi099 2024-01-27T23:26:32.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:31 smithi099 bash[16328]: audit 2024-01-27T23:26:30.936519+0000 mon.smithi099 (mon.0) 54 : audit [DBG] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:33.594 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: Scheduled mon update... 2024-01-27T23:26:34.160 INFO:teuthology.orchestra.run.smithi099.stderr:Deploying mgr service with default placement... 2024-01-27T23:26:34.904 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:34 smithi099 bash[16328]: audit 2024-01-27T23:26:33.601853+0000 mgr.smithi099.hzjdah (mgr.14116) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:34.904 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:34 smithi099 bash[16328]: cephadm 2024-01-27T23:26:33.603422+0000 mgr.smithi099.hzjdah (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2024-01-27T23:26:34.904 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:34 smithi099 bash[16328]: audit 2024-01-27T23:26:33.606453+0000 mon.smithi099 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:34.904 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:34 smithi099 bash[16328]: audit 2024-01-27T23:26:33.894796+0000 mon.smithi099 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:34.904 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:34 smithi099 bash[16328]: audit 2024-01-27T23:26:34.209959+0000 mon.smithi099 (mon.0) 57 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:35.612 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: Scheduled mgr update... 2024-01-27T23:26:36.201 INFO:teuthology.orchestra.run.smithi099.stderr:Deploying crash service with default placement... 2024-01-27T23:26:36.903 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:36 smithi099 bash[16328]: audit 2024-01-27T23:26:35.618611+0000 mgr.smithi099.hzjdah (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:36.903 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:36 smithi099 bash[16328]: cephadm 2024-01-27T23:26:35.620885+0000 mgr.smithi099.hzjdah (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2024-01-27T23:26:36.903 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:36 smithi099 bash[16328]: audit 2024-01-27T23:26:35.624488+0000 mon.smithi099 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:37.620 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: Scheduled crash update... 2024-01-27T23:26:38.148 INFO:teuthology.orchestra.run.smithi099.stderr:Deploying prometheus service with default placement... 2024-01-27T23:26:38.964 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:38 smithi099 bash[16328]: audit 2024-01-27T23:26:37.624882+0000 mgr.smithi099.hzjdah (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:38.964 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:38 smithi099 bash[16328]: cephadm 2024-01-27T23:26:37.627397+0000 mgr.smithi099.hzjdah (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2024-01-27T23:26:38.964 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:38 smithi099 bash[16328]: audit 2024-01-27T23:26:37.632042+0000 mon.smithi099 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:39.578 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: Scheduled prometheus update... 2024-01-27T23:26:40.138 INFO:teuthology.orchestra.run.smithi099.stderr:Deploying grafana service with default placement... 2024-01-27T23:26:40.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:40 smithi099 bash[16328]: audit 2024-01-27T23:26:39.325297+0000 mon.smithi099 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:40.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:40 smithi099 bash[16328]: cluster 2024-01-27T23:26:39.461276+0000 mgr.smithi099.hzjdah (mgr.14116) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:40.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:40 smithi099 bash[16328]: audit 2024-01-27T23:26:39.584882+0000 mgr.smithi099.hzjdah (mgr.14116) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:40.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:40 smithi099 bash[16328]: cephadm 2024-01-27T23:26:39.587135+0000 mgr.smithi099.hzjdah (mgr.14116) 19 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-01-27T23:26:40.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:40 smithi099 bash[16328]: audit 2024-01-27T23:26:39.590706+0000 mon.smithi099 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:41.609 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: Scheduled grafana update... 2024-01-27T23:26:42.135 INFO:teuthology.orchestra.run.smithi099.stderr:Deploying node-exporter service with default placement... 2024-01-27T23:26:42.956 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:42 smithi099 bash[16328]: cluster 2024-01-27T23:26:41.461610+0000 mgr.smithi099.hzjdah (mgr.14116) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:42.956 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:42 smithi099 bash[16328]: audit 2024-01-27T23:26:41.614795+0000 mgr.smithi099.hzjdah (mgr.14116) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:42.956 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:42 smithi099 bash[16328]: cephadm 2024-01-27T23:26:41.616890+0000 mgr.smithi099.hzjdah (mgr.14116) 22 : cephadm [INF] Saving service grafana spec with placement count:1 2024-01-27T23:26:42.956 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:42 smithi099 bash[16328]: audit 2024-01-27T23:26:41.621552+0000 mon.smithi099 (mon.0) 62 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:43.576 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2024-01-27T23:26:44.141 INFO:teuthology.orchestra.run.smithi099.stderr:Deploying alertmanager service with default placement... 2024-01-27T23:26:44.870 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:44 smithi099 bash[16328]: cluster 2024-01-27T23:26:43.462062+0000 mgr.smithi099.hzjdah (mgr.14116) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:44.870 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:44 smithi099 bash[16328]: audit 2024-01-27T23:26:43.581022+0000 mgr.smithi099.hzjdah (mgr.14116) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:44.870 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:44 smithi099 bash[16328]: cephadm 2024-01-27T23:26:43.583241+0000 mgr.smithi099.hzjdah (mgr.14116) 25 : cephadm [INF] Saving service node-exporter spec with placement * 2024-01-27T23:26:44.870 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:44 smithi099 bash[16328]: audit 2024-01-27T23:26:43.588257+0000 mon.smithi099 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:45.591 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2024-01-27T23:26:47.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:46 smithi099 bash[16328]: cluster 2024-01-27T23:26:45.462478+0000 mgr.smithi099.hzjdah (mgr.14116) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:47.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:46 smithi099 bash[16328]: audit 2024-01-27T23:26:45.598225+0000 mgr.smithi099.hzjdah (mgr.14116) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:26:47.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:46 smithi099 bash[16328]: cephadm 2024-01-27T23:26:45.599636+0000 mgr.smithi099.hzjdah (mgr.14116) 28 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-01-27T23:26:47.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:46 smithi099 bash[16328]: audit 2024-01-27T23:26:45.603547+0000 mon.smithi099 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.99:0/2319582234' entity='mgr.smithi099.hzjdah' 2024-01-27T23:26:49.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:48 smithi099 bash[16328]: cluster 2024-01-27T23:26:47.462931+0000 mgr.smithi099.hzjdah (mgr.14116) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:49.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:48 smithi099 bash[16328]: audit 2024-01-27T23:26:48.156310+0000 mon.smithi099 (mon.0) 65 : audit [INF] from='client.? 172.21.15.99:0/463567784' entity='client.admin' 2024-01-27T23:26:50.791 INFO:teuthology.orchestra.run.smithi099.stderr:Enabling the dashboard module... 2024-01-27T23:26:51.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:50 smithi099 bash[16328]: cluster 2024-01-27T23:26:49.463396+0000 mgr.smithi099.hzjdah (mgr.14116) 30 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:51.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:50 smithi099 bash[16328]: audit 2024-01-27T23:26:50.226824+0000 mon.smithi099 (mon.0) 66 : audit [INF] from='client.? 172.21.15.99:0/1305208423' entity='client.admin' 2024-01-27T23:26:52.903 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:52 smithi099 bash[16328]: cluster 2024-01-27T23:26:51.463855+0000 mgr.smithi099.hzjdah (mgr.14116) 31 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:52.903 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:52 smithi099 bash[16328]: audit 2024-01-27T23:26:52.386871+0000 mon.smithi099 (mon.0) 67 : audit [INF] from='client.? 172.21.15.99:0/1124019989' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-01-27T23:26:54.006 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:53 smithi099 bash[16328]: audit 2024-01-27T23:26:52.619378+0000 mon.smithi099 (mon.0) 68 : audit [INF] from='client.? 172.21.15.99:0/1124019989' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-01-27T23:26:54.006 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:53 smithi099 bash[16328]: cluster 2024-01-27T23:26:52.619536+0000 mon.smithi099 (mon.0) 69 : cluster [DBG] mgrmap e9: smithi099.hzjdah(active, since 33s) 2024-01-27T23:26:54.781 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: { 2024-01-27T23:26:54.781 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "epoch": 9, 2024-01-27T23:26:54.781 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "available": true, 2024-01-27T23:26:54.781 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "active_name": "smithi099.hzjdah", 2024-01-27T23:26:54.781 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "num_standby": 0 2024-01-27T23:26:54.781 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: } 2024-01-27T23:26:55.320 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:54 smithi099 bash[16328]: audit 2024-01-27T23:26:54.792643+0000 mon.smithi099 (mon.0) 70 : audit [DBG] from='client.? 172.21.15.99:0/1765249703' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-01-27T23:26:55.336 INFO:teuthology.orchestra.run.smithi099.stderr:Waiting for the mgr to restart... 2024-01-27T23:26:55.336 INFO:teuthology.orchestra.run.smithi099.stderr:Waiting for mgr epoch 9... 2024-01-27T23:26:59.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: cluster 2024-01-27T23:26:58.975497+0000 mon.smithi099 (mon.0) 71 : cluster [INF] Active manager daemon smithi099.hzjdah restarted 2024-01-27T23:26:59.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: cluster 2024-01-27T23:26:58.976267+0000 mon.smithi099 (mon.0) 72 : cluster [INF] Activating manager daemon smithi099.hzjdah 2024-01-27T23:26:59.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: cluster 2024-01-27T23:26:58.983573+0000 mon.smithi099 (mon.0) 73 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-01-27T23:26:59.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: cluster 2024-01-27T23:26:58.983899+0000 mon.smithi099 (mon.0) 74 : cluster [DBG] mgrmap e10: smithi099.hzjdah(active, starting, since 0.00794306s) 2024-01-27T23:26:59.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: audit 2024-01-27T23:26:58.986556+0000 mon.smithi099 (mon.0) 75 : audit [DBG] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi099"}]: dispatch 2024-01-27T23:26:59.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: audit 2024-01-27T23:26:58.988268+0000 mon.smithi099 (mon.0) 76 : audit [DBG] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr metadata", "who": "smithi099.hzjdah", "id": "smithi099.hzjdah"}]: dispatch 2024-01-27T23:26:59.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: audit 2024-01-27T23:26:58.989615+0000 mon.smithi099 (mon.0) 77 : audit [DBG] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-27T23:26:59.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: audit 2024-01-27T23:26:58.990004+0000 mon.smithi099 (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-27T23:26:59.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: audit 2024-01-27T23:26:58.990359+0000 mon.smithi099 (mon.0) 79 : audit [DBG] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-27T23:26:59.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: cluster 2024-01-27T23:26:58.994181+0000 mon.smithi099 (mon.0) 80 : cluster [INF] Manager daemon smithi099.hzjdah is now available 2024-01-27T23:26:59.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: audit 2024-01-27T23:26:59.126752+0000 mon.smithi099 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:59.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: audit 2024-01-27T23:26:59.129238+0000 mon.smithi099 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:59.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: audit 2024-01-27T23:26:59.175359+0000 mon.smithi099 (mon.0) 83 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi099.hzjdah/mirror_snapshot_schedule"}]: dispatch 2024-01-27T23:26:59.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:26:59 smithi099 bash[16328]: audit 2024-01-27T23:26:59.179851+0000 mon.smithi099 (mon.0) 84 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi099.hzjdah/trash_purge_schedule"}]: dispatch 2024-01-27T23:26:59.992 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: { 2024-01-27T23:26:59.992 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2024-01-27T23:26:59.992 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: "initialized": true 2024-01-27T23:26:59.992 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: } 2024-01-27T23:27:00.602 INFO:teuthology.orchestra.run.smithi099.stderr:mgr epoch 9 is available 2024-01-27T23:27:00.602 INFO:teuthology.orchestra.run.smithi099.stderr:Generating a dashboard self-signed certificate... 2024-01-27T23:27:01.300 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:00 smithi099 bash[16328]: audit 2024-01-27T23:26:59.986517+0000 mgr.smithi099.hzjdah (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-01-27T23:27:01.301 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:00 smithi099 bash[16328]: cluster 2024-01-27T23:26:59.987660+0000 mon.smithi099 (mon.0) 85 : cluster [DBG] mgrmap e11: smithi099.hzjdah(active, since 1.0117s) 2024-01-27T23:27:01.301 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:00 smithi099 bash[16328]: audit 2024-01-27T23:27:00.004400+0000 mgr.smithi099.hzjdah (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-01-27T23:27:02.068 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: Self-signed certificate created 2024-01-27T23:27:02.320 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:01 smithi099 bash[16328]: cluster 2024-01-27T23:27:00.990236+0000 mon.smithi099 (mon.0) 86 : cluster [DBG] mgrmap e12: smithi099.hzjdah(active, since 2s) 2024-01-27T23:27:02.624 INFO:teuthology.orchestra.run.smithi099.stderr:Creating initial admin user... 2024-01-27T23:27:03.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:03 smithi099 bash[16328]: audit 2024-01-27T23:27:01.980503+0000 mgr.smithi099.hzjdah (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:03.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:03 smithi099 bash[16328]: audit 2024-01-27T23:27:02.073569+0000 mon.smithi099 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:03.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:03 smithi099 bash[16328]: audit 2024-01-27T23:27:02.080352+0000 mon.smithi099 (mon.0) 88 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:04.310 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$j7F/ZIOvIgwvNq6mj20aYei9Mhru9L7CMhl7oRuSEElJSYhEMFgBW", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1706398024, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-01-27T23:27:04.921 INFO:teuthology.orchestra.run.smithi099.stderr:Fetching dashboard port number... 2024-01-27T23:27:05.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:05 smithi099 bash[16328]: audit 2024-01-27T23:27:04.082299+0000 mgr.smithi099.hzjdah (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-01-27T23:27:05.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:05 smithi099 bash[16328]: audit 2024-01-27T23:27:04.317521+0000 mon.smithi099 (mon.0) 89 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:06.278 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: 8443 2024-01-27T23:27:06.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:06 smithi099 bash[16328]: cluster 2024-01-27T23:27:05.322070+0000 mon.smithi099 (mon.0) 90 : cluster [DBG] mgrmap e13: smithi099.hzjdah(active, since 6s) 2024-01-27T23:27:06.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:06 smithi099 bash[16328]: audit 2024-01-27T23:27:05.976694+0000 mon.smithi099 (mon.0) 91 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:06.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:06 smithi099 bash[16328]: audit 2024-01-27T23:27:06.290754+0000 mon.smithi099 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.99:0/3693735637' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-01-27T23:27:06.862 INFO:teuthology.orchestra.run.smithi099.stderr:firewalld does not appear to be present 2024-01-27T23:27:06.863 INFO:teuthology.orchestra.run.smithi099.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2024-01-27T23:27:06.866 INFO:teuthology.orchestra.run.smithi099.stderr:Ceph Dashboard is now available at: 2024-01-27T23:27:06.867 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:27:06.867 INFO:teuthology.orchestra.run.smithi099.stderr: URL: https://smithi099.front.sepia.ceph.com:8443/ 2024-01-27T23:27:06.867 INFO:teuthology.orchestra.run.smithi099.stderr: User: admin 2024-01-27T23:27:06.867 INFO:teuthology.orchestra.run.smithi099.stderr: Password: f5joq83j9j 2024-01-27T23:27:06.867 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:27:06.867 INFO:teuthology.orchestra.run.smithi099.stderr:Enabling autotune for osd_memory_target 2024-01-27T23:27:10.262 INFO:teuthology.orchestra.run.smithi099.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2024-01-27T23:27:10.817 INFO:teuthology.orchestra.run.smithi099.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr:Or, if you are only running a single cluster on this host: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr:Please consider enabling telemetry to help improve Ceph: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: ceph telemetry on 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr:For more information see: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:27:10.818 INFO:teuthology.orchestra.run.smithi099.stderr:Bootstrap complete. 2024-01-27T23:27:10.853 INFO:tasks.cephadm:Fetching config... 2024-01-27T23:27:10.854 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:27:10.854 DEBUG:teuthology.orchestra.run.smithi099:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-01-27T23:27:10.859 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-01-27T23:27:10.859 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:27:10.859 DEBUG:teuthology.orchestra.run.smithi099:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-01-27T23:27:10.907 INFO:tasks.cephadm:Fetching mon keyring... 2024-01-27T23:27:10.907 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:27:10.907 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd if=/var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/keyring of=/dev/stdout 2024-01-27T23:27:10.964 INFO:tasks.cephadm:Fetching pub ssh key... 2024-01-27T23:27:10.964 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:27:10.964 DEBUG:teuthology.orchestra.run.smithi099:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-01-27T23:27:11.017 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-01-27T23:27:11.018 DEBUG:teuthology.orchestra.run.smithi099:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDNB234VbblDOZcNyiNeiObxhBWM3RtNJlB+Hev17nGRsiQInqsP4IPvwOxQE4JKYjwsDEUWQqs0eCA2/eRpxKlMjzc+MwuOqz/gs9SlGiIzgb6seJI698PRem4orV58g4BBHtjx4z+GyPfEJLJwT6D8JfoNOUM61AOCU2H7oJAv920Jwv15SzFXVrULjTltQmbvDoOlzP1QUj8LWtFhKZOoDSZbjfg2lCf79jO0MlanN5H4E/qhzpy0+DLP+BzJDCJHPXv/geqCDUPwrxFdF0y0ePqOX50dA000LBWMU4uD9PiOq0Rny2fCK+W/s5evkKP9xq1nAAJyPHQnP1Be3qKq4mzlfxN3scgy/iqk8e0NN4H8YBedZ89Zu15PthD/yjdiaIVGOxtucQDXFvHSGB9YQTc5vOHhjJfX4CDhzSI2l7T37MHL2qzcunjO5pASkKEVLHymxz+jCwcO1iqqIEps5X4pngFLbey5aGRel6sHp4XuZyEtKkCniLp+nC6Cck= ceph-54223e96-bd6b-11ee-95b2-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-01-27T23:27:11.084 INFO:teuthology.orchestra.run.smithi099.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDNB234VbblDOZcNyiNeiObxhBWM3RtNJlB+Hev17nGRsiQInqsP4IPvwOxQE4JKYjwsDEUWQqs0eCA2/eRpxKlMjzc+MwuOqz/gs9SlGiIzgb6seJI698PRem4orV58g4BBHtjx4z+GyPfEJLJwT6D8JfoNOUM61AOCU2H7oJAv920Jwv15SzFXVrULjTltQmbvDoOlzP1QUj8LWtFhKZOoDSZbjfg2lCf79jO0MlanN5H4E/qhzpy0+DLP+BzJDCJHPXv/geqCDUPwrxFdF0y0ePqOX50dA000LBWMU4uD9PiOq0Rny2fCK+W/s5evkKP9xq1nAAJyPHQnP1Be3qKq4mzlfxN3scgy/iqk8e0NN4H8YBedZ89Zu15PthD/yjdiaIVGOxtucQDXFvHSGB9YQTc5vOHhjJfX4CDhzSI2l7T37MHL2qzcunjO5pASkKEVLHymxz+jCwcO1iqqIEps5X4pngFLbey5aGRel6sHp4XuZyEtKkCniLp+nC6Cck= ceph-54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:27:11.095 DEBUG:teuthology.orchestra.run.smithi142:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDNB234VbblDOZcNyiNeiObxhBWM3RtNJlB+Hev17nGRsiQInqsP4IPvwOxQE4JKYjwsDEUWQqs0eCA2/eRpxKlMjzc+MwuOqz/gs9SlGiIzgb6seJI698PRem4orV58g4BBHtjx4z+GyPfEJLJwT6D8JfoNOUM61AOCU2H7oJAv920Jwv15SzFXVrULjTltQmbvDoOlzP1QUj8LWtFhKZOoDSZbjfg2lCf79jO0MlanN5H4E/qhzpy0+DLP+BzJDCJHPXv/geqCDUPwrxFdF0y0ePqOX50dA000LBWMU4uD9PiOq0Rny2fCK+W/s5evkKP9xq1nAAJyPHQnP1Be3qKq4mzlfxN3scgy/iqk8e0NN4H8YBedZ89Zu15PthD/yjdiaIVGOxtucQDXFvHSGB9YQTc5vOHhjJfX4CDhzSI2l7T37MHL2qzcunjO5pASkKEVLHymxz+jCwcO1iqqIEps5X4pngFLbey5aGRel6sHp4XuZyEtKkCniLp+nC6Cck= ceph-54223e96-bd6b-11ee-95b2-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-01-27T23:27:11.121 INFO:teuthology.orchestra.run.smithi142.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDNB234VbblDOZcNyiNeiObxhBWM3RtNJlB+Hev17nGRsiQInqsP4IPvwOxQE4JKYjwsDEUWQqs0eCA2/eRpxKlMjzc+MwuOqz/gs9SlGiIzgb6seJI698PRem4orV58g4BBHtjx4z+GyPfEJLJwT6D8JfoNOUM61AOCU2H7oJAv920Jwv15SzFXVrULjTltQmbvDoOlzP1QUj8LWtFhKZOoDSZbjfg2lCf79jO0MlanN5H4E/qhzpy0+DLP+BzJDCJHPXv/geqCDUPwrxFdF0y0ePqOX50dA000LBWMU4uD9PiOq0Rny2fCK+W/s5evkKP9xq1nAAJyPHQnP1Be3qKq4mzlfxN3scgy/iqk8e0NN4H8YBedZ89Zu15PthD/yjdiaIVGOxtucQDXFvHSGB9YQTc5vOHhjJfX4CDhzSI2l7T37MHL2qzcunjO5pASkKEVLHymxz+jCwcO1iqqIEps5X4pngFLbey5aGRel6sHp4XuZyEtKkCniLp+nC6Cck= ceph-54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:27:11.132 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-01-27T23:27:11.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:11 smithi099 bash[16328]: audit 2024-01-27T23:27:10.271971+0000 mon.smithi099 (mon.0) 93 : audit [INF] from='client.? 172.21.15.99:0/2050762738' entity='client.admin' 2024-01-27T23:27:16.284 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-01-27T23:27:16.284 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-01-27T23:27:16.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:16 smithi099 bash[16328]: audit 2024-01-27T23:27:15.584173+0000 mon.smithi099 (mon.0) 94 : audit [INF] from='client.? 172.21.15.99:0/1979562446' entity='client.admin' 2024-01-27T23:27:19.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:19 smithi099 bash[16328]: audit 2024-01-27T23:27:18.472128+0000 mon.smithi099 (mon.0) 95 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:19.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:19 smithi099 bash[16328]: audit 2024-01-27T23:27:18.773108+0000 mon.smithi099 (mon.0) 96 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd/host:smithi099", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:27:19.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:19 smithi099 bash[16328]: audit 2024-01-27T23:27:18.778936+0000 mon.smithi099 (mon.0) 97 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:20.213 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi142 2024-01-27T23:27:20.214 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:27:20.214 DEBUG:teuthology.orchestra.run.smithi142:> dd of=/etc/ceph/ceph.conf 2024-01-27T23:27:20.220 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:27:20.220 DEBUG:teuthology.orchestra.run.smithi142:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-27T23:27:20.269 INFO:tasks.cephadm:Adding host smithi142 to orchestrator... 2024-01-27T23:27:20.269 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch host add smithi142 2024-01-27T23:27:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:20 smithi099 bash[16328]: cephadm 2024-01-27T23:27:18.792601+0000 mgr.smithi099.hzjdah (mgr.14156) 5 : cephadm [INF] Deploying daemon alertmanager.smithi099 on smithi099 2024-01-27T23:27:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:20 smithi099 bash[16328]: cluster 2024-01-27T23:27:18.991261+0000 mgr.smithi099.hzjdah (mgr.14156) 6 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:20 smithi099 bash[16328]: audit 2024-01-27T23:27:19.481933+0000 mgr.smithi099.hzjdah (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-01-27T23:27:20.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:20 smithi099 bash[16328]: audit 2024-01-27T23:27:19.484662+0000 mon.smithi099 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:22.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:22 smithi099 bash[16328]: cluster 2024-01-27T23:27:20.991642+0000 mgr.smithi099.hzjdah (mgr.14156) 8 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:24.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:24 smithi099 bash[16328]: cluster 2024-01-27T23:27:22.992086+0000 mgr.smithi099.hzjdah (mgr.14156) 9 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:26.694 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:26 smithi099 bash[16328]: cluster 2024-01-27T23:27:24.992534+0000 mgr.smithi099.hzjdah (mgr.14156) 10 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:28.036 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:27 smithi099 bash[16328]: audit 2024-01-27T23:27:26.747778+0000 mon.smithi099 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:28.036 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:27 smithi099 bash[16328]: audit 2024-01-27T23:27:26.750131+0000 mon.smithi099 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi099", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:27:28.036 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:27 smithi099 bash[16328]: audit 2024-01-27T23:27:26.755333+0000 mon.smithi099 (mon.0) 101 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi099", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-01-27T23:27:28.036 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:27 smithi099 bash[16328]: audit 2024-01-27T23:27:26.756455+0000 mon.smithi099 (mon.0) 102 : audit [DBG] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:28.036 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:27 smithi099 bash[16328]: cephadm 2024-01-27T23:27:26.757212+0000 mgr.smithi099.hzjdah (mgr.14156) 11 : cephadm [INF] Deploying daemon crash.smithi099 on smithi099 2024-01-27T23:27:28.036 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:27 smithi099 bash[16328]: cluster 2024-01-27T23:27:26.992848+0000 mgr.smithi099.hzjdah (mgr.14156) 12 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:30.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:30 smithi099 bash[16328]: cluster 2024-01-27T23:27:28.993187+0000 mgr.smithi099.hzjdah (mgr.14156) 13 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:30.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:30 smithi099 bash[16328]: audit 2024-01-27T23:27:29.176599+0000 mon.smithi099 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:30.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:30 smithi099 bash[16328]: audit 2024-01-27T23:27:29.268508+0000 mon.smithi099 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:30.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:30 smithi099 bash[16328]: audit 2024-01-27T23:27:29.332506+0000 mon.smithi099 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:30.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:30 smithi099 bash[16328]: audit 2024-01-27T23:27:29.336068+0000 mon.smithi099 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:30.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:30 smithi099 bash[16328]: audit 2024-01-27T23:27:29.340401+0000 mon.smithi099 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-01-27T23:27:30.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:30 smithi099 bash[16328]: audit 2024-01-27T23:27:29.340847+0000 mgr.smithi099.hzjdah (mgr.14156) 14 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-01-27T23:27:30.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:30 smithi099 bash[16328]: audit 2024-01-27T23:27:29.345346+0000 mon.smithi099 (mon.0) 108 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:30.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:30 smithi099 bash[16328]: cephadm 2024-01-27T23:27:29.359054+0000 mgr.smithi099.hzjdah (mgr.14156) 15 : cephadm [INF] Deploying daemon grafana.smithi099 on smithi099 2024-01-27T23:27:32.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:32 smithi099 bash[16328]: cluster 2024-01-27T23:27:30.993729+0000 mgr.smithi099.hzjdah (mgr.14156) 16 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:34.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:34 smithi099 bash[16328]: cluster 2024-01-27T23:27:32.994161+0000 mgr.smithi099.hzjdah (mgr.14156) 17 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:34.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:34 smithi099 bash[16328]: audit 2024-01-27T23:27:34.182406+0000 mon.smithi099 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:36.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:36 smithi099 bash[16328]: cluster 2024-01-27T23:27:34.994491+0000 mgr.smithi099.hzjdah (mgr.14156) 18 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:38.571 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:38 smithi099 bash[16328]: cluster 2024-01-27T23:27:36.994872+0000 mgr.smithi099.hzjdah (mgr.14156) 19 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:40.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:40 smithi099 bash[16328]: cluster 2024-01-27T23:27:38.995272+0000 mgr.smithi099.hzjdah (mgr.14156) 20 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:42.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:42 smithi099 bash[16328]: cluster 2024-01-27T23:27:40.995785+0000 mgr.smithi099.hzjdah (mgr.14156) 21 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:44.660 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:44 smithi099 bash[16328]: cluster 2024-01-27T23:27:42.996263+0000 mgr.smithi099.hzjdah (mgr.14156) 22 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:45.922 INFO:teuthology.orchestra.run.smithi142.stdout:Added host 'smithi142' with addr '172.21.15.142' 2024-01-27T23:27:46.672 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch host ls --format=json 2024-01-27T23:27:46.821 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:46 smithi099 bash[16328]: cluster 2024-01-27T23:27:44.996732+0000 mgr.smithi099.hzjdah (mgr.14156) 23 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:46.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:46 smithi099 bash[16328]: audit 2024-01-27T23:27:45.092663+0000 mgr.smithi099.hzjdah (mgr.14156) 24 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi142", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:46.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:46 smithi099 bash[16328]: audit 2024-01-27T23:27:45.932700+0000 mon.smithi099 (mon.0) 110 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:47.664 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:47 smithi099 bash[16328]: cephadm 2024-01-27T23:27:45.933624+0000 mgr.smithi099.hzjdah (mgr.14156) 25 : cephadm [INF] Added host smithi142 2024-01-27T23:27:47.664 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:47 smithi099 bash[16328]: audit 2024-01-27T23:27:47.153487+0000 mon.smithi099 (mon.0) 111 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:48.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:48 smithi099 bash[16328]: cluster 2024-01-27T23:27:46.997148+0000 mgr.smithi099.hzjdah (mgr.14156) 26 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:27:48.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:48 smithi099 bash[16328]: cephadm 2024-01-27T23:27:47.156860+0000 mgr.smithi099.hzjdah (mgr.14156) 27 : cephadm [INF] Deploying daemon node-exporter.smithi099 on smithi099 2024-01-27T23:27:48.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:48 smithi099 bash[16328]: audit 2024-01-27T23:27:47.714919+0000 mon.smithi099 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:48.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:48 smithi099 bash[16328]: audit 2024-01-27T23:27:47.719663+0000 mon.smithi099 (mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-01-27T23:27:49.942 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:49 smithi099 bash[16328]: audit 2024-01-27T23:27:48.718681+0000 mon.smithi099 (mon.0) 114 : audit [INF] from='mgr.14156 172.21.15.99:0/2964980874' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-01-27T23:27:49.942 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:49 smithi099 bash[16328]: cluster 2024-01-27T23:27:48.718852+0000 mon.smithi099 (mon.0) 115 : cluster [DBG] mgrmap e14: smithi099.hzjdah(active, since 49s) 2024-01-27T23:27:55.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:55 smithi099 bash[16328]: cluster 2024-01-27T23:27:55.135132+0000 mon.smithi099 (mon.0) 116 : cluster [INF] Active manager daemon smithi099.hzjdah restarted 2024-01-27T23:27:55.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:55 smithi099 bash[16328]: cluster 2024-01-27T23:27:55.135693+0000 mon.smithi099 (mon.0) 117 : cluster [INF] Activating manager daemon smithi099.hzjdah 2024-01-27T23:27:55.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:55 smithi099 bash[16328]: cluster 2024-01-27T23:27:55.139107+0000 mon.smithi099 (mon.0) 118 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-01-27T23:27:55.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:55 smithi099 bash[16328]: cluster 2024-01-27T23:27:55.139236+0000 mon.smithi099 (mon.0) 119 : cluster [DBG] mgrmap e15: smithi099.hzjdah(active, starting, since 0.00373056s) 2024-01-27T23:27:55.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:55 smithi099 bash[16328]: audit 2024-01-27T23:27:55.142331+0000 mon.smithi099 (mon.0) 120 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi099"}]: dispatch 2024-01-27T23:27:55.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:55 smithi099 bash[16328]: audit 2024-01-27T23:27:55.144414+0000 mon.smithi099 (mon.0) 121 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr metadata", "who": "smithi099.hzjdah", "id": "smithi099.hzjdah"}]: dispatch 2024-01-27T23:27:55.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:55 smithi099 bash[16328]: audit 2024-01-27T23:27:55.145468+0000 mon.smithi099 (mon.0) 122 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-27T23:27:55.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:55 smithi099 bash[16328]: audit 2024-01-27T23:27:55.145860+0000 mon.smithi099 (mon.0) 123 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-27T23:27:55.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:55 smithi099 bash[16328]: audit 2024-01-27T23:27:55.146204+0000 mon.smithi099 (mon.0) 124 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-27T23:27:55.258 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:55 smithi099 bash[16328]: cluster 2024-01-27T23:27:55.150701+0000 mon.smithi099 (mon.0) 125 : cluster [INF] Manager daemon smithi099.hzjdah is now available 2024-01-27T23:27:56.136 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-01-27T23:27:56.136 INFO:teuthology.orchestra.run.smithi142.stdout:[{"addr": "172.21.15.99", "hostname": "smithi099", "labels": [], "status": ""}, {"addr": "172.21.15.142", "hostname": "smithi142", "labels": [], "status": ""}] 2024-01-27T23:27:56.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:56 smithi099 bash[16328]: audit 2024-01-27T23:27:55.292483+0000 mon.smithi099 (mon.0) 126 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:27:56.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:56 smithi099 bash[16328]: audit 2024-01-27T23:27:55.297373+0000 mon.smithi099 (mon.0) 127 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:27:56.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:56 smithi099 bash[16328]: audit 2024-01-27T23:27:55.328942+0000 mon.smithi099 (mon.0) 128 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:56.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:56 smithi099 bash[16328]: audit 2024-01-27T23:27:55.362348+0000 mon.smithi099 (mon.0) 129 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi099.hzjdah/mirror_snapshot_schedule"}]: dispatch 2024-01-27T23:27:56.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:56 smithi099 bash[16328]: audit 2024-01-27T23:27:55.366486+0000 mon.smithi099 (mon.0) 130 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi099.hzjdah/trash_purge_schedule"}]: dispatch 2024-01-27T23:27:56.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:56 smithi099 bash[16328]: audit 2024-01-27T23:27:55.962456+0000 mon.smithi099 (mon.0) 131 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:27:56.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:56 smithi099 bash[16328]: cluster 2024-01-27T23:27:56.148258+0000 mon.smithi099 (mon.0) 132 : cluster [DBG] mgrmap e16: smithi099.hzjdah(active, since 1.01273s) 2024-01-27T23:27:56.796 INFO:tasks.cephadm:Setting crush tunables to default 2024-01-27T23:27:56.796 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd crush tunables default 2024-01-27T23:27:57.538 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:57 smithi099 bash[16328]: audit 2024-01-27T23:27:56.147266+0000 mgr.smithi099.hzjdah (mgr.14182) 1 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:27:58.435 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:58 smithi099 bash[16328]: cluster 2024-01-27T23:27:57.194642+0000 mon.smithi099 (mon.0) 133 : cluster [DBG] mgrmap e17: smithi099.hzjdah(active, since 2s) 2024-01-27T23:27:58.436 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:27:58 smithi099 bash[16328]: audit 2024-01-27T23:27:57.810107+0000 mon.smithi099 (mon.0) 134 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:01.163 INFO:teuthology.orchestra.run.smithi099.stderr:adjusted tunables profile to default 2024-01-27T23:28:01.321 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:01 smithi099 bash[16328]: audit 2024-01-27T23:28:01.118229+0000 mon.smithi099 (mon.0) 135 : audit [INF] from='client.? 172.21.15.99:0/1343951836' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-01-27T23:28:02.013 INFO:tasks.cephadm:Adding mon.smithi099 on smithi099 2024-01-27T23:28:02.014 INFO:tasks.cephadm:Adding mon.smithi142 on smithi142 2024-01-27T23:28:02.014 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch apply mon '2;smithi099:172.21.15.99=smithi099;smithi142:172.21.15.142=smithi142' 2024-01-27T23:28:02.269 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:02 smithi099 bash[16328]: audit 2024-01-27T23:28:01.172089+0000 mon.smithi099 (mon.0) 136 : audit [INF] from='client.? 172.21.15.99:0/1343951836' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-01-27T23:28:02.269 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:02 smithi099 bash[16328]: cluster 2024-01-27T23:28:01.172171+0000 mon.smithi099 (mon.0) 137 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-27T23:28:02.269 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:02 smithi099 bash[16328]: audit 2024-01-27T23:28:01.325420+0000 mon.smithi099 (mon.0) 138 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:02.269 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:02 smithi099 bash[16328]: audit 2024-01-27T23:28:01.604710+0000 mon.smithi099 (mon.0) 139 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd/host:smithi099", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:28:04.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:03.644917+0000 mon.smithi099 (mon.0) 140 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:04.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:03.953652+0000 mon.smithi099 (mon.0) 141 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:04.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:03.955052+0000 mon.smithi099 (mon.0) 142 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd/host:smithi142", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:28:04.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:03.956824+0000 mon.smithi099 (mon.0) 143 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:04.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:03.958549+0000 mon.smithi099 (mon.0) 144 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:28:04.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:04.034311+0000 mon.smithi099 (mon.0) 145 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:04.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:04.048472+0000 mon.smithi099 (mon.0) 146 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:04.822 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:04.054395+0000 mon.smithi099 (mon.0) 147 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:04.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:04.058502+0000 mon.smithi099 (mon.0) 148 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi142", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:28:04.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:04.062667+0000 mon.smithi099 (mon.0) 149 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi142", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-01-27T23:28:04.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:04 smithi099 bash[16328]: audit 2024-01-27T23:28:04.064243+0000 mon.smithi099 (mon.0) 150 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:05.863 INFO:teuthology.orchestra.run.smithi142.stdout:Scheduled mon update... 2024-01-27T23:28:06.072 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:05 smithi099 bash[16328]: cephadm 2024-01-27T23:28:03.961523+0000 mgr.smithi099.hzjdah (mgr.14182) 2 : cephadm [INF] Updating smithi099:/etc/ceph/ceph.conf 2024-01-27T23:28:06.072 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:05 smithi099 bash[16328]: cephadm 2024-01-27T23:28:03.962169+0000 mgr.smithi099.hzjdah (mgr.14182) 3 : cephadm [INF] Updating smithi142:/etc/ceph/ceph.conf 2024-01-27T23:28:06.072 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:05 smithi099 bash[16328]: cephadm 2024-01-27T23:28:03.988753+0000 mgr.smithi099.hzjdah (mgr.14182) 4 : cephadm [INF] Updating smithi099:/etc/ceph/ceph.client.admin.keyring 2024-01-27T23:28:06.072 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:05 smithi099 bash[16328]: cephadm 2024-01-27T23:28:03.993630+0000 mgr.smithi099.hzjdah (mgr.14182) 5 : cephadm [INF] Updating smithi142:/etc/ceph/ceph.client.admin.keyring 2024-01-27T23:28:06.072 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:05 smithi099 bash[16328]: cephadm 2024-01-27T23:28:04.065702+0000 mgr.smithi099.hzjdah (mgr.14182) 6 : cephadm [INF] Deploying daemon crash.smithi142 on smithi142 2024-01-27T23:28:06.521 DEBUG:teuthology.orchestra.run.smithi142:mon.smithi142> sudo journalctl -f -n 0 -u ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mon.smithi142.service 2024-01-27T23:28:06.523 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-27T23:28:06.523 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph mon dump -f json 2024-01-27T23:28:06.676 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:-- Logs begin at Sun 2022-10-16 12:17:23 UTC. -- 2024-01-27T23:28:07.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:06 smithi099 bash[16328]: audit 2024-01-27T23:28:05.862768+0000 mgr.smithi099.hzjdah (mgr.14182) 7 : audit [DBG] from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi099:172.21.15.99=smithi099;smithi142:172.21.15.142=smithi142", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:28:07.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:06 smithi099 bash[16328]: cephadm 2024-01-27T23:28:05.868718+0000 mgr.smithi099.hzjdah (mgr.14182) 8 : cephadm [INF] Saving service mon spec with placement smithi099:172.21.15.99=smithi099;smithi142:172.21.15.142=smithi142;count:2 2024-01-27T23:28:07.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:06 smithi099 bash[16328]: audit 2024-01-27T23:28:05.874369+0000 mon.smithi099 (mon.0) 151 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:08.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:08 smithi099 bash[16328]: audit 2024-01-27T23:28:07.072574+0000 mon.smithi099 (mon.0) 152 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:08.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:08 smithi099 bash[16328]: audit 2024-01-27T23:28:07.077796+0000 mon.smithi099 (mon.0) 153 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi142.nlkoaq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-27T23:28:08.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:08 smithi099 bash[16328]: audit 2024-01-27T23:28:07.082445+0000 mon.smithi099 (mon.0) 154 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi142.nlkoaq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-01-27T23:28:08.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:08 smithi099 bash[16328]: audit 2024-01-27T23:28:07.083838+0000 mon.smithi099 (mon.0) 155 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-27T23:28:08.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:08 smithi099 bash[16328]: audit 2024-01-27T23:28:07.085056+0000 mon.smithi099 (mon.0) 156 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:08.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:08 smithi099 bash[16328]: cephadm 2024-01-27T23:28:07.086089+0000 mgr.smithi099.hzjdah (mgr.14182) 9 : cephadm [INF] Deploying daemon mgr.smithi142.nlkoaq on smithi142 2024-01-27T23:28:11.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:11 smithi099 bash[16328]: audit 2024-01-27T23:28:10.215359+0000 mon.smithi099 (mon.0) 157 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:11.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:11 smithi099 bash[16328]: audit 2024-01-27T23:28:10.220505+0000 mon.smithi099 (mon.0) 158 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:28:11.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:11 smithi099 bash[16328]: audit 2024-01-27T23:28:10.222256+0000 mon.smithi099 (mon.0) 159 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-27T23:28:11.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:11 smithi099 bash[16328]: audit 2024-01-27T23:28:10.223965+0000 mon.smithi099 (mon.0) 160 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:11.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:11 smithi099 bash[16328]: cephadm 2024-01-27T23:28:10.225177+0000 mgr.smithi099.hzjdah (mgr.14182) 10 : cephadm [INF] Deploying daemon mon.smithi142 on smithi142 2024-01-27T23:28:11.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:11 smithi099 bash[16328]: audit 2024-01-27T23:28:10.333054+0000 mon.smithi099 (mon.0) 161 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:11.731 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-01-27T23:28:11.731 INFO:teuthology.orchestra.run.smithi142.stdout:{"epoch":1,"fsid":"54223e96-bd6b-11ee-95b2-87774f69a715","modified":"2024-01-27T23:25:48.110083Z","created":"2024-01-27T23:25:48.110083Z","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":"smithi099","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:3300","nonce":0},{"type":"v1","addr":"172.21.15.99:6789","nonce":0}]},"addr":"172.21.15.99:6789/0","public_addr":"172.21.15.99:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-01-27T23:28:11.733 INFO:teuthology.orchestra.run.smithi142.stderr:dumped monmap epoch 1 2024-01-27T23:28:12.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:12 smithi099 bash[16328]: audit 2024-01-27T23:28:11.743149+0000 mon.smithi099 (mon.0) 162 : audit [DBG] from='client.? 172.21.15.142:0/2784127397' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-27T23:28:13.424 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-27T23:28:13.424 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph mon dump -f json 2024-01-27T23:28:15.145 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:15 smithi142 systemd[1]: Started Ceph mon.smithi142 for 54223e96-bd6b-11ee-95b2-87774f69a715. 2024-01-27T23:28:16.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:16 smithi099 bash[16328]: audit 2024-01-27T23:28:15.139214+0000 mon.smithi099 (mon.0) 163 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:16.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:16 smithi099 bash[16328]: cephadm 2024-01-27T23:28:15.143277+0000 mgr.smithi099.hzjdah (mgr.14182) 11 : cephadm [INF] Deploying daemon node-exporter.smithi142 on smithi142 2024-01-27T23:28:16.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:16 smithi099 bash[16328]: cluster 2024-01-27T23:28:15.147187+0000 mgr.smithi099.hzjdah (mgr.14182) 12 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:16.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:16 smithi099 bash[16328]: audit 2024-01-27T23:28:15.340443+0000 mon.smithi099 (mon.0) 164 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:16.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:16 smithi099 bash[16328]: audit 2024-01-27T23:28:15.754226+0000 mon.smithi099 (mon.0) 165 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:16.572 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:16 smithi099 bash[16328]: cephadm 2024-01-27T23:28:15.775907+0000 mgr.smithi099.hzjdah (mgr.14182) 13 : cephadm [INF] Deploying daemon prometheus.smithi142 on smithi142 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.729+0000 7fed5ecfc880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.729+0000 7fed5ecfc880 0 ceph version 16.2.14-508-ga72a5dac (a72a5dace2353a54147d37bd2699a2a482507966) pacific (stable), process ceph-mon, pid 7 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.729+0000 7fed5ecfc880 0 pidfile_write: ignore empty --pid-file 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 0 load: jerasure load: lrc load: isa 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: RocksDB version: 6.8.1 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Compile date Jan 25 2024 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: DB SUMMARY 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: CURRENT file: CURRENT 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: IDENTITY file: IDENTITY 2024-01-27T23:28:17.851 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi142/store.db dir, Total Num: 0, files: 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi142/store.db: 000003.log size: 511 ; 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.error_if_exists: 0 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.create_if_missing: 0 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.paranoid_checks: 1 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.env: 0x55bd0a075080 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.fs: Posix File System 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.info_log: 0x55bd0aac8400 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.statistics: (nil) 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.use_fsync: 0 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_log_file_size: 0 2024-01-27T23:28:17.852 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.allow_fallocate: 1 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.use_direct_reads: 0 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.db_log_dir: 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi142/store.db 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_subcompactions: 1 2024-01-27T23:28:17.853 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_background_flushes: -1 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.write_buffer_manager: 0x55bd0b716480 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-27T23:28:17.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-27T23:28:17.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-27T23:28:17.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-27T23:28:17.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.unordered_write: 0 2024-01-27T23:28:17.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-27T23:28:17.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-27T23:28:17.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-27T23:28:17.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-27T23:28:17.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.row_cache: None 2024-01-27T23:28:17.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.wal_filter: None 2024-01-27T23:28:17.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-27T23:28:17.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-27T23:28:17.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.preserve_deletes: 0 2024-01-27T23:28:17.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.two_write_queues: 0 2024-01-27T23:28:17.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-27T23:28:17.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.atomic_flush: 0 2024-01-27T23:28:17.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-27T23:28:17.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-27T23:28:17.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-27T23:28:17.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.log_readahead_size: 0 2024-01-27T23:28:17.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_background_jobs: 2 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_background_compactions: -1 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_open_files: -1 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-27T23:28:17.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Compression algorithms supported: 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: kZSTD supported: 0 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: kXpressCompression supported: 0 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: kLZ4Compression supported: 1 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: kBZip2Compression supported: 0 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: kZlibCompression supported: 1 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: kSnappyCompression supported: 1 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi142/store.db/MANIFEST-000001 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-27T23:28:17.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.merge_operator: 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_filter: None 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55bd0aa6bd28) 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: cache_index_and_filter_blocks: 1 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: pin_top_level_index_and_filter: 1 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: index_type: 0 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: data_block_index_type: 0 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: index_shortening: 1 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: data_block_hash_table_util_ratio: 0.750000 2024-01-27T23:28:17.859 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: hash_index_allow_collision: 1 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: checksum: 1 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: no_block_cache: 0 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: block_cache: 0x55bd0aaa2f10 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: block_cache_name: BinnedLRUCache 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: block_cache_options: 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: capacity : 536870912 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: num_shard_bits : 4 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: strict_capacity_limit : 0 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: high_pri_pool_ratio: 0.000 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: block_cache_compressed: (nil) 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: persistent_cache: (nil) 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: block_size: 4096 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: block_size_deviation: 10 2024-01-27T23:28:17.860 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: block_restart_interval: 16 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: index_block_restart_interval: 1 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: metadata_block_size: 4096 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: partition_filters: 0 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: use_delta_encoding: 1 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: whole_key_filtering: 1 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: verify_compression: 0 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: read_amp_bytes_per_bit: 0 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: format_version: 2 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: enable_index_compression: 1 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: block_align: 0 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-27T23:28:17.861 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compression: NoCompression 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.num_levels: 7 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-27T23:28:17.862 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-27T23:28:17.863 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-27T23:28:17.864 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-27T23:28:17.864 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-27T23:28:17.864 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-27T23:28:17.864 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-27T23:28:17.864 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-27T23:28:17.864 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-27T23:28:17.864 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-27T23:28:17.864 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-27T23:28:17.865 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-27T23:28:17.865 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-27T23:28:17.865 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-27T23:28:17.865 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-27T23:28:17.865 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-27T23:28:17.865 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-27T23:28:17.865 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-27T23:28:17.865 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-27T23:28:17.866 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-27T23:28:17.866 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-27T23:28:17.866 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-27T23:28:17.866 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-27T23:28:17.866 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-27T23:28:17.866 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-27T23:28:17.866 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.table_properties_collectors: 2024-01-27T23:28:17.866 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.inplace_update_support: 0 2024-01-27T23:28:17.867 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-27T23:28:17.867 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-27T23:28:17.867 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-27T23:28:17.867 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-27T23:28:17.867 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.bloom_locality: 0 2024-01-27T23:28:17.867 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.max_successive_merges: 0 2024-01-27T23:28:17.867 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-27T23:28:17.867 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-27T23:28:17.868 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-27T23:28:17.868 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-27T23:28:17.868 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.ttl: 2592000 2024-01-27T23:28:17.868 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-27T23:28:17.868 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi142/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-01-27T23:28:17.868 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-01-27T23:28:17.868 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706398097737672, "job": 1, "event": "recovery_started", "log_files": [3]} 2024-01-27T23:28:17.868 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.733+0000 7fed5ecfc880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2024-01-27T23:28:17.868 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.737+0000 7fed5ecfc880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-01-27T23:28:17.869 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.737+0000 7fed5ecfc880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706398097738434, "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": 1706398097, "oldest_key_time": 3, "file_creation_time": 0}} 2024-01-27T23:28:17.869 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.737+0000 7fed5ecfc880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2024-01-27T23:28:17.869 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.737+0000 7fed5ecfc880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706398097738965, "job": 1, "event": "recovery_finished"} 2024-01-27T23:28:17.869 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.737+0000 7fed5ecfc880 4 rocksdb: DB pointer 0x55bd0ab6b800 2024-01-27T23:28:17.869 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.737+0000 7fed45aee700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-27T23:28:17.869 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.737+0000 7fed45aee700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-27T23:28:17.869 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ** DB Stats ** 2024-01-27T23:28:17.869 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:28:17.869 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-01-27T23:28:17.869 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ** Compaction Stats [default] ** 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ** Compaction Stats [default] ** 2024-01-27T23:28:17.870 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Cumulative compaction: 0.00 GB write, 0.32 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Interval compaction: 0.00 GB write, 0.32 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ** Compaction Stats [default] ** 2024-01-27T23:28:17.871 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ** Compaction Stats [default] ** 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:28:17.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Cumulative compaction: 0.00 GB write, 0.32 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.737+0000 7fed5ecfc880 0 mon.smithi142 does not exist in monmap, will attempt to join an existing cluster 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.737+0000 7fed5ecfc880 0 using public_addr v2:172.21.15.142:0/0 -> [v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0] 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.741+0000 7fed5ecfc880 0 starting mon.smithi142 rank -1 at public addrs [v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0] at bind addrs [v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi142 fsid 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.741+0000 7fed5ecfc880 1 mon.smithi142@-1(???) e0 preinit fsid 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 0 mon.smithi142@-1(synchronizing).mds e1 new map 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 0 mon.smithi142@-1(synchronizing).mds e1 print_map 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: e1 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: enable_multiple, ever_enabled_multiple: 1,1 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: legacy client fscid: -1 2024-01-27T23:28:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: No filesystems configured 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 1 mon.smithi142@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 1 mon.smithi142@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 1 mon.smithi142@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 1 mon.smithi142@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 1 mon.smithi142@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 1 mon.smithi142@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 1 mon.smithi142@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 0 mon.smithi142@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 0 mon.smithi142@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 0 mon.smithi142@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: audit 2024-01-27T23:28:15.139214+0000 mon.smithi099 (mon.0) 163 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: cephadm 2024-01-27T23:28:15.143277+0000 mgr.smithi099.hzjdah (mgr.14182) 11 : cephadm [INF] Deploying daemon node-exporter.smithi142 on smithi142 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: cluster 2024-01-27T23:28:15.147187+0000 mgr.smithi099.hzjdah (mgr.14182) 12 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: audit 2024-01-27T23:28:15.340443+0000 mon.smithi099 (mon.0) 164 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:17.875 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: audit 2024-01-27T23:28:15.754226+0000 mon.smithi099 (mon.0) 165 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:17.875 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: cephadm 2024-01-27T23:28:15.775907+0000 mgr.smithi099.hzjdah (mgr.14182) 13 : cephadm [INF] Deploying daemon prometheus.smithi142 on smithi142 2024-01-27T23:28:17.875 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:17 smithi142 bash[20347]: debug 2024-01-27T23:28:17.777+0000 7fed482f3700 1 mon.smithi142@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-01-27T23:28:23.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:17.790712+0000 mon.smithi099 (mon.0) 166 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:17.795179+0000 mon.smithi099 (mon.0) 167 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi099"}]: dispatch 2024-01-27T23:28:23.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:17.795464+0000 mon.smithi099 (mon.0) 168 : cluster [INF] mon.smithi099 calling monitor election 2024-01-27T23:28:23.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:17.797618+0000 mon.smithi099 (mon.0) 169 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:18.581034+0000 mon.smithi099 (mon.0) 170 : audit [DBG] from='mgr.? 172.21.15.142:0/3577681094' entity='mgr.smithi142.nlkoaq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi142.nlkoaq/crt"}]: dispatch 2024-01-27T23:28:23.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:18.789883+0000 mon.smithi099 (mon.0) 171 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:19.148084+0000 mgr.smithi099.hzjdah (mgr.14182) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:23.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:19.788085+0000 mon.smithi142 (mon.1) 1 : cluster [INF] mon.smithi142 calling monitor election 2024-01-27T23:28:23.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:19.790413+0000 mon.smithi099 (mon.0) 172 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:20.790482+0000 mon.smithi099 (mon.0) 173 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:21.148510+0000 mgr.smithi099.hzjdah (mgr.14182) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:23.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:21.790707+0000 mon.smithi099 (mon.0) 174 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:22.791177+0000 mon.smithi099 (mon.0) 175 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:22.823157+0000 mon.smithi099 (mon.0) 176 : cluster [INF] mon.smithi099 is new leader, mons smithi099,smithi142 in quorum (ranks 0,1) 2024-01-27T23:28:23.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:22.829064+0000 mon.smithi099 (mon.0) 177 : cluster [DBG] monmap e2: 2 mons at {smithi099=[v2:172.21.15.99:3300/0,v1:172.21.15.99:6789/0],smithi142=[v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0]} removed_ranks: {} 2024-01-27T23:28:23.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:22.830078+0000 mon.smithi099 (mon.0) 178 : cluster [DBG] fsmap 2024-01-27T23:28:23.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:22.830116+0000 mon.smithi099 (mon.0) 179 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-27T23:28:23.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:22.830381+0000 mon.smithi099 (mon.0) 180 : cluster [DBG] mgrmap e17: smithi099.hzjdah(active, since 27s) 2024-01-27T23:28:23.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:22.831431+0000 mon.smithi099 (mon.0) 181 : cluster [DBG] Standby manager daemon smithi142.nlkoaq started 2024-01-27T23:28:23.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:22.834713+0000 mon.smithi099 (mon.0) 182 : audit [DBG] from='mgr.? 172.21.15.142:0/3577681094' entity='mgr.smithi142.nlkoaq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-01-27T23:28:23.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: cluster 2024-01-27T23:28:22.838322+0000 mon.smithi099 (mon.0) 183 : cluster [INF] overall HEALTH_OK 2024-01-27T23:28:23.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:22.839338+0000 mon.smithi099 (mon.0) 184 : audit [DBG] from='mgr.? 172.21.15.142:0/3577681094' entity='mgr.smithi142.nlkoaq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi142.nlkoaq/key"}]: dispatch 2024-01-27T23:28:23.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:22.842544+0000 mon.smithi099 (mon.0) 185 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:23.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:22 smithi142 bash[20347]: audit 2024-01-27T23:28:22.842746+0000 mon.smithi099 (mon.0) 186 : audit [DBG] from='mgr.? 172.21.15.142:0/3577681094' entity='mgr.smithi142.nlkoaq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-01-27T23:28:23.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:17.790712+0000 mon.smithi099 (mon.0) 166 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:17.795179+0000 mon.smithi099 (mon.0) 167 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi099"}]: dispatch 2024-01-27T23:28:23.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:17.795464+0000 mon.smithi099 (mon.0) 168 : cluster [INF] mon.smithi099 calling monitor election 2024-01-27T23:28:23.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:17.797618+0000 mon.smithi099 (mon.0) 169 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:18.581034+0000 mon.smithi099 (mon.0) 170 : audit [DBG] from='mgr.? 172.21.15.142:0/3577681094' entity='mgr.smithi142.nlkoaq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi142.nlkoaq/crt"}]: dispatch 2024-01-27T23:28:23.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:18.789883+0000 mon.smithi099 (mon.0) 171 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:19.148084+0000 mgr.smithi099.hzjdah (mgr.14182) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:23.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:19.788085+0000 mon.smithi142 (mon.1) 1 : cluster [INF] mon.smithi142 calling monitor election 2024-01-27T23:28:23.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:19.790413+0000 mon.smithi099 (mon.0) 172 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:20.790482+0000 mon.smithi099 (mon.0) 173 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:21.148510+0000 mgr.smithi099.hzjdah (mgr.14182) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:21.790707+0000 mon.smithi099 (mon.0) 174 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:22.791177+0000 mon.smithi099 (mon.0) 175 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:22.823157+0000 mon.smithi099 (mon.0) 176 : cluster [INF] mon.smithi099 is new leader, mons smithi099,smithi142 in quorum (ranks 0,1) 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:22.829064+0000 mon.smithi099 (mon.0) 177 : cluster [DBG] monmap e2: 2 mons at {smithi099=[v2:172.21.15.99:3300/0,v1:172.21.15.99:6789/0],smithi142=[v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0]} removed_ranks: {} 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:22.830078+0000 mon.smithi099 (mon.0) 178 : cluster [DBG] fsmap 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:22.830116+0000 mon.smithi099 (mon.0) 179 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:22.830381+0000 mon.smithi099 (mon.0) 180 : cluster [DBG] mgrmap e17: smithi099.hzjdah(active, since 27s) 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:22.831431+0000 mon.smithi099 (mon.0) 181 : cluster [DBG] Standby manager daemon smithi142.nlkoaq started 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:22.834713+0000 mon.smithi099 (mon.0) 182 : audit [DBG] from='mgr.? 172.21.15.142:0/3577681094' entity='mgr.smithi142.nlkoaq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: cluster 2024-01-27T23:28:22.838322+0000 mon.smithi099 (mon.0) 183 : cluster [INF] overall HEALTH_OK 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:22.839338+0000 mon.smithi099 (mon.0) 184 : audit [DBG] from='mgr.? 172.21.15.142:0/3577681094' entity='mgr.smithi142.nlkoaq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi142.nlkoaq/key"}]: dispatch 2024-01-27T23:28:23.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:22.842544+0000 mon.smithi099 (mon.0) 185 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:23.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:22 smithi099 bash[16328]: audit 2024-01-27T23:28:22.842746+0000 mon.smithi099 (mon.0) 186 : audit [DBG] from='mgr.? 172.21.15.142:0/3577681094' entity='mgr.smithi142.nlkoaq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-01-27T23:28:24.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:23 smithi142 bash[20347]: cluster 2024-01-27T23:28:22.898219+0000 mon.smithi099 (mon.0) 187 : cluster [DBG] mgrmap e18: smithi099.hzjdah(active, since 27s), standbys: smithi142.nlkoaq 2024-01-27T23:28:24.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:23 smithi142 bash[20347]: audit 2024-01-27T23:28:22.898427+0000 mon.smithi099 (mon.0) 188 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr metadata", "who": "smithi142.nlkoaq", "id": "smithi142.nlkoaq"}]: dispatch 2024-01-27T23:28:24.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:23 smithi142 bash[20347]: cluster 2024-01-27T23:28:23.148965+0000 mgr.smithi099.hzjdah (mgr.14182) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:24.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:23 smithi142 bash[20347]: audit 2024-01-27T23:28:23.791164+0000 mon.smithi099 (mon.0) 189 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:24.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:23 smithi099 bash[16328]: cluster 2024-01-27T23:28:22.898219+0000 mon.smithi099 (mon.0) 187 : cluster [DBG] mgrmap e18: smithi099.hzjdah(active, since 27s), standbys: smithi142.nlkoaq 2024-01-27T23:28:24.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:23 smithi099 bash[16328]: audit 2024-01-27T23:28:22.898427+0000 mon.smithi099 (mon.0) 188 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr metadata", "who": "smithi142.nlkoaq", "id": "smithi142.nlkoaq"}]: dispatch 2024-01-27T23:28:24.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:23 smithi099 bash[16328]: cluster 2024-01-27T23:28:23.148965+0000 mgr.smithi099.hzjdah (mgr.14182) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:24.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:23 smithi099 bash[16328]: audit 2024-01-27T23:28:23.791164+0000 mon.smithi099 (mon.0) 189 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-01-27T23:28:24.355 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-01-27T23:28:24.355 INFO:teuthology.orchestra.run.smithi142.stdout:{"epoch":2,"fsid":"54223e96-bd6b-11ee-95b2-87774f69a715","modified":"2024-01-27T23:28:17.790085Z","created":"2024-01-27T23:25:48.110083Z","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":"smithi099","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:3300","nonce":0},{"type":"v1","addr":"172.21.15.99:6789","nonce":0}]},"addr":"172.21.15.99:6789/0","public_addr":"172.21.15.99:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi142","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:3300","nonce":0},{"type":"v1","addr":"172.21.15.142:6789","nonce":0}]},"addr":"172.21.15.142:6789/0","public_addr":"172.21.15.142:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-01-27T23:28:24.360 INFO:teuthology.orchestra.run.smithi142.stderr:dumped monmap epoch 2 2024-01-27T23:28:25.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:24 smithi142 bash[20347]: audit 2024-01-27T23:28:24.366634+0000 mon.smithi099 (mon.0) 190 : audit [DBG] from='client.? 172.21.15.142:0/776861254' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-27T23:28:25.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:24 smithi099 bash[16328]: audit 2024-01-27T23:28:24.366634+0000 mon.smithi099 (mon.0) 190 : audit [DBG] from='client.? 172.21.15.142:0/776861254' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-27T23:28:25.871 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-01-27T23:28:25.872 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph config generate-minimal-conf 2024-01-27T23:28:26.231 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:25 smithi142 bash[20347]: cluster 2024-01-27T23:28:25.149497+0000 mgr.smithi099.hzjdah (mgr.14182) 18 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:26.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:25 smithi099 bash[16328]: cluster 2024-01-27T23:28:25.149497+0000 mgr.smithi099.hzjdah (mgr.14182) 18 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:28.868 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:28 smithi142 bash[20347]: cluster 2024-01-27T23:28:27.149957+0000 mgr.smithi099.hzjdah (mgr.14182) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:28.874 INFO:teuthology.orchestra.run.smithi099.stdout:# minimal ceph.conf for 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:28:28.874 INFO:teuthology.orchestra.run.smithi099.stdout:[global] 2024-01-27T23:28:28.874 INFO:teuthology.orchestra.run.smithi099.stdout: fsid = 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:28:28.874 INFO:teuthology.orchestra.run.smithi099.stdout: mon_host = [v2:172.21.15.99:3300/0,v1:172.21.15.99:6789/0] [v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0] 2024-01-27T23:28:29.073 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:28 smithi099 bash[16328]: cluster 2024-01-27T23:28:27.149957+0000 mgr.smithi099.hzjdah (mgr.14182) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:29.467 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-01-27T23:28:29.468 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:28:29.468 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd of=/etc/ceph/ceph.conf 2024-01-27T23:28:29.483 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:28:29.483 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-27T23:28:29.539 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:28:29.540 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/ceph/ceph.conf 2024-01-27T23:28:29.550 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:28:29.550 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-27T23:28:29.611 INFO:tasks.cephadm:Deploying OSDs... 2024-01-27T23:28:29.612 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:28:29.612 DEBUG:teuthology.orchestra.run.smithi099:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:28:29.618 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-27T23:28:29.619 DEBUG:teuthology.orchestra.run.smithi099:> stat /dev/nvme1n1 2024-01-27T23:28:29.667 INFO:teuthology.orchestra.run.smithi099.stdout: File: /dev/nvme1n1 2024-01-27T23:28:29.668 INFO:teuthology.orchestra.run.smithi099.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:28:29.668 INFO:teuthology.orchestra.run.smithi099.stdout:Device: 6h/6d Inode: 473 Links: 1 Device type: 103,2 2024-01-27T23:28:29.668 INFO:teuthology.orchestra.run.smithi099.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:28:29.668 INFO:teuthology.orchestra.run.smithi099.stdout:Access: 2024-01-27 23:27:12.999896258 +0000 2024-01-27T23:28:29.668 INFO:teuthology.orchestra.run.smithi099.stdout:Modify: 2024-01-27 23:25:14.756961477 +0000 2024-01-27T23:28:29.668 INFO:teuthology.orchestra.run.smithi099.stdout:Change: 2024-01-27 23:25:14.756961477 +0000 2024-01-27T23:28:29.668 INFO:teuthology.orchestra.run.smithi099.stdout: Birth: - 2024-01-27T23:28:29.668 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-01-27T23:28:29.722 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records in 2024-01-27T23:28:29.722 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records out 2024-01-27T23:28:29.722 INFO:teuthology.orchestra.run.smithi099.stderr:512 bytes copied, 0.000481152 s, 1.1 MB/s 2024-01-27T23:28:29.723 DEBUG:teuthology.orchestra.run.smithi099:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-01-27T23:28:29.776 DEBUG:teuthology.orchestra.run.smithi099:> stat /dev/nvme2n1 2024-01-27T23:28:29.827 INFO:teuthology.orchestra.run.smithi099.stdout: File: /dev/nvme2n1 2024-01-27T23:28:29.827 INFO:teuthology.orchestra.run.smithi099.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:28:29.827 INFO:teuthology.orchestra.run.smithi099.stdout:Device: 6h/6d Inode: 479 Links: 1 Device type: 103,4 2024-01-27T23:28:29.828 INFO:teuthology.orchestra.run.smithi099.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:28:29.828 INFO:teuthology.orchestra.run.smithi099.stdout:Access: 2024-01-27 23:27:13.015895877 +0000 2024-01-27T23:28:29.828 INFO:teuthology.orchestra.run.smithi099.stdout:Modify: 2024-01-27 23:25:14.865012889 +0000 2024-01-27T23:28:29.828 INFO:teuthology.orchestra.run.smithi099.stdout:Change: 2024-01-27 23:25:14.865012889 +0000 2024-01-27T23:28:29.828 INFO:teuthology.orchestra.run.smithi099.stdout: Birth: - 2024-01-27T23:28:29.828 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-01-27T23:28:29.829 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:29 smithi142 bash[20347]: audit 2024-01-27T23:28:28.885460+0000 mon.smithi099 (mon.0) 191 : audit [DBG] from='client.? 172.21.15.99:0/809654829' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:29.829 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:29 smithi142 bash[20347]: audit 2024-01-27T23:28:28.926437+0000 mon.smithi099 (mon.0) 192 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:29.829 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:29 smithi142 bash[20347]: audit 2024-01-27T23:28:28.928949+0000 mon.smithi099 (mon.0) 193 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:28:29.882 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records in 2024-01-27T23:28:29.883 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records out 2024-01-27T23:28:29.883 INFO:teuthology.orchestra.run.smithi099.stderr:512 bytes copied, 0.000384652 s, 1.3 MB/s 2024-01-27T23:28:29.884 DEBUG:teuthology.orchestra.run.smithi099:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-01-27T23:28:29.933 DEBUG:teuthology.orchestra.run.smithi099:> stat /dev/nvme3n1 2024-01-27T23:28:29.984 INFO:teuthology.orchestra.run.smithi099.stdout: File: /dev/nvme3n1 2024-01-27T23:28:29.984 INFO:teuthology.orchestra.run.smithi099.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:28:29.984 INFO:teuthology.orchestra.run.smithi099.stdout:Device: 6h/6d Inode: 485 Links: 1 Device type: 103,6 2024-01-27T23:28:29.984 INFO:teuthology.orchestra.run.smithi099.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:28:29.984 INFO:teuthology.orchestra.run.smithi099.stdout:Access: 2024-01-27 23:27:13.027895592 +0000 2024-01-27T23:28:29.984 INFO:teuthology.orchestra.run.smithi099.stdout:Modify: 2024-01-27 23:25:14.985070014 +0000 2024-01-27T23:28:29.985 INFO:teuthology.orchestra.run.smithi099.stdout:Change: 2024-01-27 23:25:14.985070014 +0000 2024-01-27T23:28:29.985 INFO:teuthology.orchestra.run.smithi099.stdout: Birth: - 2024-01-27T23:28:29.985 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-01-27T23:28:30.036 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:29 smithi099 bash[16328]: audit 2024-01-27T23:28:28.885460+0000 mon.smithi099 (mon.0) 191 : audit [DBG] from='client.? 172.21.15.99:0/809654829' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:30.036 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:29 smithi099 bash[16328]: audit 2024-01-27T23:28:28.926437+0000 mon.smithi099 (mon.0) 192 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:30.036 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:29 smithi099 bash[16328]: audit 2024-01-27T23:28:28.928949+0000 mon.smithi099 (mon.0) 193 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:28:30.038 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records in 2024-01-27T23:28:30.038 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records out 2024-01-27T23:28:30.038 INFO:teuthology.orchestra.run.smithi099.stderr:512 bytes copied, 0.000473553 s, 1.1 MB/s 2024-01-27T23:28:30.039 DEBUG:teuthology.orchestra.run.smithi099:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-01-27T23:28:30.089 DEBUG:teuthology.orchestra.run.smithi099:> stat /dev/nvme4n1 2024-01-27T23:28:30.140 INFO:teuthology.orchestra.run.smithi099.stdout: File: /dev/nvme4n1 2024-01-27T23:28:30.140 INFO:teuthology.orchestra.run.smithi099.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:28:30.140 INFO:teuthology.orchestra.run.smithi099.stdout:Device: 6h/6d Inode: 491 Links: 1 Device type: 103,8 2024-01-27T23:28:30.140 INFO:teuthology.orchestra.run.smithi099.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:28:30.140 INFO:teuthology.orchestra.run.smithi099.stdout:Access: 2024-01-27 23:27:13.047895116 +0000 2024-01-27T23:28:30.140 INFO:teuthology.orchestra.run.smithi099.stdout:Modify: 2024-01-27 23:25:15.093121426 +0000 2024-01-27T23:28:30.140 INFO:teuthology.orchestra.run.smithi099.stdout:Change: 2024-01-27 23:25:15.093121426 +0000 2024-01-27T23:28:30.140 INFO:teuthology.orchestra.run.smithi099.stdout: Birth: - 2024-01-27T23:28:30.140 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-01-27T23:28:30.194 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records in 2024-01-27T23:28:30.194 INFO:teuthology.orchestra.run.smithi099.stderr:1+0 records out 2024-01-27T23:28:30.194 INFO:teuthology.orchestra.run.smithi099.stderr:512 bytes copied, 0.000377089 s, 1.4 MB/s 2024-01-27T23:28:30.195 DEBUG:teuthology.orchestra.run.smithi099:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-01-27T23:28:30.244 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:28:30.244 DEBUG:teuthology.orchestra.run.smithi142:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:28:30.251 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-27T23:28:30.252 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/nvme1n1 2024-01-27T23:28:30.300 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/nvme1n1 2024-01-27T23:28:30.300 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:28:30.300 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 473 Links: 1 Device type: 103,2 2024-01-27T23:28:30.300 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:28:30.300 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-01-27 23:28:01.838089735 +0000 2024-01-27T23:28:30.300 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-01-27 23:25:16.047163057 +0000 2024-01-27T23:28:30.301 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-01-27 23:25:16.047163057 +0000 2024-01-27T23:28:30.301 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-01-27T23:28:30.301 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-01-27T23:28:30.355 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-01-27T23:28:30.355 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-01-27T23:28:30.355 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000552232 s, 927 kB/s 2024-01-27T23:28:30.356 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-01-27T23:28:30.405 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/nvme2n1 2024-01-27T23:28:30.455 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/nvme2n1 2024-01-27T23:28:30.456 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:28:30.456 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 479 Links: 1 Device type: 103,4 2024-01-27T23:28:30.456 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:28:30.456 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-01-27 23:28:01.854089354 +0000 2024-01-27T23:28:30.456 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-01-27 23:25:16.163102314 +0000 2024-01-27T23:28:30.456 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-01-27 23:25:16.163102314 +0000 2024-01-27T23:28:30.456 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-01-27T23:28:30.456 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-01-27T23:28:30.510 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-01-27T23:28:30.510 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-01-27T23:28:30.510 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000451724 s, 1.1 MB/s 2024-01-27T23:28:30.511 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-01-27T23:28:30.561 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/nvme3n1 2024-01-27T23:28:30.612 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/nvme3n1 2024-01-27T23:28:30.612 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:28:30.612 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 484 Links: 1 Device type: 103,6 2024-01-27T23:28:30.612 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:28:30.612 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-01-27 23:28:01.870088973 +0000 2024-01-27T23:28:30.612 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-01-27 23:25:16.259052043 +0000 2024-01-27T23:28:30.612 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-01-27 23:25:16.259052043 +0000 2024-01-27T23:28:30.612 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-01-27T23:28:30.613 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-01-27T23:28:30.666 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-01-27T23:28:30.667 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-01-27T23:28:30.667 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.00043849 s, 1.2 MB/s 2024-01-27T23:28:30.668 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-01-27T23:28:30.717 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/nvme4n1 2024-01-27T23:28:30.768 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/nvme4n1 2024-01-27T23:28:30.768 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:28:30.768 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 491 Links: 1 Device type: 103,8 2024-01-27T23:28:30.768 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:28:30.768 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-01-27 23:28:01.886088592 +0000 2024-01-27T23:28:30.768 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-01-27 23:25:16.358999679 +0000 2024-01-27T23:28:30.768 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-01-27 23:25:16.358999679 +0000 2024-01-27T23:28:30.768 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-01-27T23:28:30.769 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-01-27T23:28:30.822 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-01-27T23:28:30.822 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-01-27T23:28:30.822 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000434542 s, 1.2 MB/s 2024-01-27T23:28:30.823 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-01-27T23:28:30.873 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-01-27T23:28:30.928 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:30 smithi142 bash[20347]: cluster 2024-01-27T23:28:29.150407+0000 mgr.smithi099.hzjdah (mgr.14182) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:31.072 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:30 smithi099 bash[16328]: cluster 2024-01-27T23:28:29.150407+0000 mgr.smithi099.hzjdah (mgr.14182) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:33.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:32 smithi142 bash[20347]: cluster 2024-01-27T23:28:31.150825+0000 mgr.smithi099.hzjdah (mgr.14182) 21 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:33.072 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:32 smithi099 bash[16328]: cluster 2024-01-27T23:28:31.150825+0000 mgr.smithi099.hzjdah (mgr.14182) 21 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:34.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:33 smithi142 bash[20347]: audit 2024-01-27T23:28:32.851206+0000 mon.smithi099 (mon.0) 194 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:34.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:33 smithi142 bash[20347]: cluster 2024-01-27T23:28:33.151270+0000 mgr.smithi099.hzjdah (mgr.14182) 22 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:34.075 INFO:teuthology.orchestra.run.smithi142.stdout:Scheduled osd.all-available-devices update... 2024-01-27T23:28:34.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:33 smithi099 bash[16328]: audit 2024-01-27T23:28:32.851206+0000 mon.smithi099 (mon.0) 194 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:34.322 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:33 smithi099 bash[16328]: cluster 2024-01-27T23:28:33.151270+0000 mgr.smithi099.hzjdah (mgr.14182) 22 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:34.703 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-01-27T23:28:34.703 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:28:35.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.075032+0000 mgr.smithi099.hzjdah (mgr.14182) 23 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:28:35.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: cephadm 2024-01-27T23:28:34.079411+0000 mgr.smithi099.hzjdah (mgr.14182) 24 : cephadm [INF] Marking host: smithi099 for OSDSpec preview refresh. 2024-01-27T23:28:35.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: cephadm 2024-01-27T23:28:34.079623+0000 mgr.smithi099.hzjdah (mgr.14182) 25 : cephadm [INF] Marking host: smithi142 for OSDSpec preview refresh. 2024-01-27T23:28:35.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: cephadm 2024-01-27T23:28:34.080233+0000 mgr.smithi099.hzjdah (mgr.14182) 26 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-01-27T23:28:35.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.086449+0000 mon.smithi099 (mon.0) 195 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.594933+0000 mon.smithi099 (mon.0) 196 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.606936+0000 mon.smithi099 (mon.0) 197 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.609058+0000 mon.smithi099 (mon.0) 198 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:35.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.610871+0000 mon.smithi099 (mon.0) 199 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:28:35.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: cephadm 2024-01-27T23:28:34.613316+0000 mgr.smithi099.hzjdah (mgr.14182) 27 : cephadm [INF] Updating smithi099:/etc/ceph/ceph.conf 2024-01-27T23:28:35.548 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: cephadm 2024-01-27T23:28:34.613875+0000 mgr.smithi099.hzjdah (mgr.14182) 28 : cephadm [INF] Updating smithi142:/etc/ceph/ceph.conf 2024-01-27T23:28:35.548 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.643749+0000 mon.smithi099 (mon.0) 200 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.548 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.661052+0000 mon.smithi099 (mon.0) 201 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.548 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.668841+0000 mon.smithi099 (mon.0) 202 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.548 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.677281+0000 mon.smithi099 (mon.0) 203 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:28:35.548 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.685074+0000 mon.smithi099 (mon.0) 204 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:28:35.548 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.686874+0000 mon.smithi099 (mon.0) 205 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:28:35.548 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.687309+0000 mon.smithi099 (mon.0) 206 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:35.548 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:35 smithi142 bash[20347]: audit 2024-01-27T23:28:34.688122+0000 mon.smithi099 (mon.0) 207 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.075032+0000 mgr.smithi099.hzjdah (mgr.14182) 23 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: cephadm 2024-01-27T23:28:34.079411+0000 mgr.smithi099.hzjdah (mgr.14182) 24 : cephadm [INF] Marking host: smithi099 for OSDSpec preview refresh. 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: cephadm 2024-01-27T23:28:34.079623+0000 mgr.smithi099.hzjdah (mgr.14182) 25 : cephadm [INF] Marking host: smithi142 for OSDSpec preview refresh. 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: cephadm 2024-01-27T23:28:34.080233+0000 mgr.smithi099.hzjdah (mgr.14182) 26 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.086449+0000 mon.smithi099 (mon.0) 195 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.594933+0000 mon.smithi099 (mon.0) 196 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.606936+0000 mon.smithi099 (mon.0) 197 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.609058+0000 mon.smithi099 (mon.0) 198 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.610871+0000 mon.smithi099 (mon.0) 199 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: cephadm 2024-01-27T23:28:34.613316+0000 mgr.smithi099.hzjdah (mgr.14182) 27 : cephadm [INF] Updating smithi099:/etc/ceph/ceph.conf 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: cephadm 2024-01-27T23:28:34.613875+0000 mgr.smithi099.hzjdah (mgr.14182) 28 : cephadm [INF] Updating smithi142:/etc/ceph/ceph.conf 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.643749+0000 mon.smithi099 (mon.0) 200 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.661052+0000 mon.smithi099 (mon.0) 201 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.668841+0000 mon.smithi099 (mon.0) 202 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:28:35.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.677281+0000 mon.smithi099 (mon.0) 203 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:28:35.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.685074+0000 mon.smithi099 (mon.0) 204 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:28:35.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.686874+0000 mon.smithi099 (mon.0) 205 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:28:35.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.687309+0000 mon.smithi099 (mon.0) 206 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:35.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:35 smithi099 bash[16328]: audit 2024-01-27T23:28:34.688122+0000 mon.smithi099 (mon.0) 207 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:28:36.201 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:36 smithi099 bash[16328]: cluster 2024-01-27T23:28:35.151656+0000 mgr.smithi099.hzjdah (mgr.14182) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:36.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:36 smithi142 bash[20347]: cluster 2024-01-27T23:28:35.151656+0000 mgr.smithi099.hzjdah (mgr.14182) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:37.894 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:28:38.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:38 smithi099 bash[16328]: cluster 2024-01-27T23:28:37.152071+0000 mgr.smithi099.hzjdah (mgr.14182) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:38.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:38 smithi099 bash[16328]: audit 2024-01-27T23:28:37.905591+0000 mon.smithi099 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.99:0/3754606103' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:28:38.513 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-01-27T23:28:38.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:38 smithi142 bash[20347]: cluster 2024-01-27T23:28:37.152071+0000 mgr.smithi099.hzjdah (mgr.14182) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:38.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:38 smithi142 bash[20347]: audit 2024-01-27T23:28:37.905591+0000 mon.smithi099 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.99:0/3754606103' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:28:39.514 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:28:40.639 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:40 smithi142 bash[20347]: cluster 2024-01-27T23:28:39.152529+0000 mgr.smithi099.hzjdah (mgr.14182) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:40.776 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:40 smithi099 bash[16328]: cluster 2024-01-27T23:28:39.152529+0000 mgr.smithi099.hzjdah (mgr.14182) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:42.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:42 smithi142 bash[20347]: cluster 2024-01-27T23:28:41.152839+0000 mgr.smithi099.hzjdah (mgr.14182) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:42.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:42 smithi099 bash[16328]: cluster 2024-01-27T23:28:41.152839+0000 mgr.smithi099.hzjdah (mgr.14182) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:43.403 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:28:43.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:43 smithi142 bash[20347]: audit 2024-01-27T23:28:43.205243+0000 mon.smithi142 (mon.1) 2 : audit [INF] from='client.? 172.21.15.142:0/1845899242' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "edc8969a-03b9-4db6-858f-9c89bdad6fc1"}]: dispatch 2024-01-27T23:28:43.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:43 smithi142 bash[20347]: audit 2024-01-27T23:28:43.208509+0000 mon.smithi099 (mon.0) 209 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "edc8969a-03b9-4db6-858f-9c89bdad6fc1"}]: dispatch 2024-01-27T23:28:43.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:43 smithi142 bash[20347]: audit 2024-01-27T23:28:43.215004+0000 mon.smithi099 (mon.0) 210 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "edc8969a-03b9-4db6-858f-9c89bdad6fc1"}]': finished 2024-01-27T23:28:43.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:43 smithi142 bash[20347]: cluster 2024-01-27T23:28:43.215114+0000 mon.smithi099 (mon.0) 211 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-01-27T23:28:43.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:43 smithi142 bash[20347]: audit 2024-01-27T23:28:43.215526+0000 mon.smithi099 (mon.0) 212 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:43.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:43 smithi099 bash[16328]: audit 2024-01-27T23:28:43.205243+0000 mon.smithi142 (mon.1) 2 : audit [INF] from='client.? 172.21.15.142:0/1845899242' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "edc8969a-03b9-4db6-858f-9c89bdad6fc1"}]: dispatch 2024-01-27T23:28:43.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:43 smithi099 bash[16328]: audit 2024-01-27T23:28:43.208509+0000 mon.smithi099 (mon.0) 209 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "edc8969a-03b9-4db6-858f-9c89bdad6fc1"}]: dispatch 2024-01-27T23:28:43.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:43 smithi099 bash[16328]: audit 2024-01-27T23:28:43.215004+0000 mon.smithi099 (mon.0) 210 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "edc8969a-03b9-4db6-858f-9c89bdad6fc1"}]': finished 2024-01-27T23:28:43.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:43 smithi099 bash[16328]: cluster 2024-01-27T23:28:43.215114+0000 mon.smithi099 (mon.0) 211 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-01-27T23:28:43.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:43 smithi099 bash[16328]: audit 2024-01-27T23:28:43.215526+0000 mon.smithi099 (mon.0) 212 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:44.104 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":6,"num_osds":1,"num_up_osds":0,"osd_up_since":0,"num_in_osds":1,"osd_in_since":1706398123,"num_remapped_pgs":0} 2024-01-27T23:28:44.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:44 smithi142 bash[20347]: cluster 2024-01-27T23:28:43.153246+0000 mgr.smithi099.hzjdah (mgr.14182) 33 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:44.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:44 smithi142 bash[20347]: audit 2024-01-27T23:28:43.414550+0000 mon.smithi099 (mon.0) 213 : audit [DBG] from='client.? 172.21.15.99:0/163387091' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:28:44.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:44 smithi142 bash[20347]: audit 2024-01-27T23:28:44.262915+0000 mon.smithi142 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.142:0/1640706730' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:44.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:44 smithi099 bash[16328]: cluster 2024-01-27T23:28:43.153246+0000 mgr.smithi099.hzjdah (mgr.14182) 33 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:44.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:44 smithi099 bash[16328]: audit 2024-01-27T23:28:43.414550+0000 mon.smithi099 (mon.0) 213 : audit [DBG] from='client.? 172.21.15.99:0/163387091' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:28:44.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:44 smithi099 bash[16328]: audit 2024-01-27T23:28:44.262915+0000 mon.smithi142 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.142:0/1640706730' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:45.105 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:28:45.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:45 smithi142 bash[20347]: audit 2024-01-27T23:28:44.398539+0000 mon.smithi099 (mon.0) 214 : audit [INF] from='client.? 172.21.15.99:0/1771911584' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7ed92ba7-eb2c-4365-9fb2-b883e5bcbf10"}]: dispatch 2024-01-27T23:28:45.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:45 smithi142 bash[20347]: audit 2024-01-27T23:28:44.405396+0000 mon.smithi099 (mon.0) 215 : audit [INF] from='client.? 172.21.15.99:0/1771911584' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7ed92ba7-eb2c-4365-9fb2-b883e5bcbf10"}]': finished 2024-01-27T23:28:45.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:45 smithi142 bash[20347]: cluster 2024-01-27T23:28:44.405572+0000 mon.smithi099 (mon.0) 216 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-01-27T23:28:45.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:45 smithi142 bash[20347]: audit 2024-01-27T23:28:44.405721+0000 mon.smithi099 (mon.0) 217 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:45.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:45 smithi142 bash[20347]: audit 2024-01-27T23:28:44.406089+0000 mon.smithi099 (mon.0) 218 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:45.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:45 smithi099 bash[16328]: audit 2024-01-27T23:28:44.398539+0000 mon.smithi099 (mon.0) 214 : audit [INF] from='client.? 172.21.15.99:0/1771911584' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7ed92ba7-eb2c-4365-9fb2-b883e5bcbf10"}]: dispatch 2024-01-27T23:28:45.823 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:45 smithi099 bash[16328]: audit 2024-01-27T23:28:44.405396+0000 mon.smithi099 (mon.0) 215 : audit [INF] from='client.? 172.21.15.99:0/1771911584' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7ed92ba7-eb2c-4365-9fb2-b883e5bcbf10"}]': finished 2024-01-27T23:28:45.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:45 smithi099 bash[16328]: cluster 2024-01-27T23:28:44.405572+0000 mon.smithi099 (mon.0) 216 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-01-27T23:28:45.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:45 smithi099 bash[16328]: audit 2024-01-27T23:28:44.405721+0000 mon.smithi099 (mon.0) 217 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:45.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:45 smithi099 bash[16328]: audit 2024-01-27T23:28:44.406089+0000 mon.smithi099 (mon.0) 218 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:46.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:46 smithi099 bash[16328]: cluster 2024-01-27T23:28:45.153746+0000 mgr.smithi099.hzjdah (mgr.14182) 34 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:46.573 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:46 smithi099 bash[16328]: audit 2024-01-27T23:28:45.435777+0000 mon.smithi099 (mon.0) 219 : audit [DBG] from='client.? 172.21.15.99:0/1076270926' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:46.795 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:46 smithi142 bash[20347]: cluster 2024-01-27T23:28:45.153746+0000 mgr.smithi099.hzjdah (mgr.14182) 34 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:46.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:46 smithi142 bash[20347]: audit 2024-01-27T23:28:45.435777+0000 mon.smithi099 (mon.0) 219 : audit [DBG] from='client.? 172.21.15.99:0/1076270926' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:47.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:47 smithi142 bash[20347]: audit 2024-01-27T23:28:46.979356+0000 mon.smithi142 (mon.1) 4 : audit [INF] from='client.? 172.21.15.142:0/497365436' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "57a5015b-a452-4afb-b008-75265f9bf937"}]: dispatch 2024-01-27T23:28:47.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:47 smithi142 bash[20347]: audit 2024-01-27T23:28:46.982559+0000 mon.smithi099 (mon.0) 220 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "57a5015b-a452-4afb-b008-75265f9bf937"}]: dispatch 2024-01-27T23:28:47.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:47 smithi142 bash[20347]: audit 2024-01-27T23:28:46.989166+0000 mon.smithi099 (mon.0) 221 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "57a5015b-a452-4afb-b008-75265f9bf937"}]': finished 2024-01-27T23:28:47.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:47 smithi142 bash[20347]: cluster 2024-01-27T23:28:46.989263+0000 mon.smithi099 (mon.0) 222 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-01-27T23:28:47.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:47 smithi142 bash[20347]: audit 2024-01-27T23:28:46.989552+0000 mon.smithi099 (mon.0) 223 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:47.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:47 smithi142 bash[20347]: audit 2024-01-27T23:28:46.990568+0000 mon.smithi099 (mon.0) 224 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:47.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:47 smithi142 bash[20347]: audit 2024-01-27T23:28:46.991182+0000 mon.smithi099 (mon.0) 225 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:47.803 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:47 smithi099 bash[16328]: audit 2024-01-27T23:28:46.979356+0000 mon.smithi142 (mon.1) 4 : audit [INF] from='client.? 172.21.15.142:0/497365436' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "57a5015b-a452-4afb-b008-75265f9bf937"}]: dispatch 2024-01-27T23:28:47.803 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:47 smithi099 bash[16328]: audit 2024-01-27T23:28:46.982559+0000 mon.smithi099 (mon.0) 220 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "57a5015b-a452-4afb-b008-75265f9bf937"}]: dispatch 2024-01-27T23:28:47.803 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:47 smithi099 bash[16328]: audit 2024-01-27T23:28:46.989166+0000 mon.smithi099 (mon.0) 221 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "57a5015b-a452-4afb-b008-75265f9bf937"}]': finished 2024-01-27T23:28:47.803 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:47 smithi099 bash[16328]: cluster 2024-01-27T23:28:46.989263+0000 mon.smithi099 (mon.0) 222 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-01-27T23:28:47.803 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:47 smithi099 bash[16328]: audit 2024-01-27T23:28:46.989552+0000 mon.smithi099 (mon.0) 223 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:47.803 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:47 smithi099 bash[16328]: audit 2024-01-27T23:28:46.990568+0000 mon.smithi099 (mon.0) 224 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:47.804 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:47 smithi099 bash[16328]: audit 2024-01-27T23:28:46.991182+0000 mon.smithi099 (mon.0) 225 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:48.198 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:28:48.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:48 smithi099 bash[16328]: cluster 2024-01-27T23:28:47.154095+0000 mgr.smithi099.hzjdah (mgr.14182) 35 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:48.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:48 smithi099 bash[16328]: audit 2024-01-27T23:28:48.037312+0000 mon.smithi142 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.142:0/2499113238' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:48.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:48 smithi099 bash[16328]: audit 2024-01-27T23:28:48.162650+0000 mon.smithi099 (mon.0) 226 : audit [INF] from='client.? 172.21.15.99:0/2803583822' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6a23d77d-52f8-4025-a345-50d27d6a1555"}]: dispatch 2024-01-27T23:28:48.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:48 smithi099 bash[16328]: audit 2024-01-27T23:28:48.169839+0000 mon.smithi099 (mon.0) 227 : audit [INF] from='client.? 172.21.15.99:0/2803583822' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6a23d77d-52f8-4025-a345-50d27d6a1555"}]': finished 2024-01-27T23:28:48.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:48 smithi099 bash[16328]: cluster 2024-01-27T23:28:48.169990+0000 mon.smithi099 (mon.0) 228 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-01-27T23:28:48.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:48 smithi099 bash[16328]: audit 2024-01-27T23:28:48.170183+0000 mon.smithi099 (mon.0) 229 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:48.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:48 smithi099 bash[16328]: audit 2024-01-27T23:28:48.170668+0000 mon.smithi099 (mon.0) 230 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:48.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:48 smithi099 bash[16328]: audit 2024-01-27T23:28:48.170947+0000 mon.smithi099 (mon.0) 231 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:48.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:48 smithi099 bash[16328]: audit 2024-01-27T23:28:48.171207+0000 mon.smithi099 (mon.0) 232 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:28:48.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:48 smithi099 bash[16328]: audit 2024-01-27T23:28:48.209294+0000 mon.smithi099 (mon.0) 233 : audit [DBG] from='client.? 172.21.15.99:0/3674285665' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:28:48.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:48 smithi142 bash[20347]: cluster 2024-01-27T23:28:47.154095+0000 mgr.smithi099.hzjdah (mgr.14182) 35 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:48.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:48 smithi142 bash[20347]: audit 2024-01-27T23:28:48.037312+0000 mon.smithi142 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.142:0/2499113238' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:48.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:48 smithi142 bash[20347]: audit 2024-01-27T23:28:48.162650+0000 mon.smithi099 (mon.0) 226 : audit [INF] from='client.? 172.21.15.99:0/2803583822' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6a23d77d-52f8-4025-a345-50d27d6a1555"}]: dispatch 2024-01-27T23:28:48.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:48 smithi142 bash[20347]: audit 2024-01-27T23:28:48.169839+0000 mon.smithi099 (mon.0) 227 : audit [INF] from='client.? 172.21.15.99:0/2803583822' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6a23d77d-52f8-4025-a345-50d27d6a1555"}]': finished 2024-01-27T23:28:48.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:48 smithi142 bash[20347]: cluster 2024-01-27T23:28:48.169990+0000 mon.smithi099 (mon.0) 228 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-01-27T23:28:48.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:48 smithi142 bash[20347]: audit 2024-01-27T23:28:48.170183+0000 mon.smithi099 (mon.0) 229 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:48.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:48 smithi142 bash[20347]: audit 2024-01-27T23:28:48.170668+0000 mon.smithi099 (mon.0) 230 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:48.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:48 smithi142 bash[20347]: audit 2024-01-27T23:28:48.170947+0000 mon.smithi099 (mon.0) 231 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:48.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:48 smithi142 bash[20347]: audit 2024-01-27T23:28:48.171207+0000 mon.smithi099 (mon.0) 232 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:28:48.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:48 smithi142 bash[20347]: audit 2024-01-27T23:28:48.209294+0000 mon.smithi099 (mon.0) 233 : audit [DBG] from='client.? 172.21.15.99:0/3674285665' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:28:49.027 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1706398128,"num_remapped_pgs":0} 2024-01-27T23:28:50.029 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:28:50.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:50 smithi142 bash[20347]: cluster 2024-01-27T23:28:49.154509+0000 mgr.smithi099.hzjdah (mgr.14182) 36 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:50.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:50 smithi142 bash[20347]: audit 2024-01-27T23:28:49.624853+0000 mon.smithi099 (mon.0) 234 : audit [DBG] from='client.? 172.21.15.99:0/2501169940' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:50.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:50 smithi099 bash[16328]: cluster 2024-01-27T23:28:49.154509+0000 mgr.smithi099.hzjdah (mgr.14182) 36 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:50.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:50 smithi099 bash[16328]: audit 2024-01-27T23:28:49.624853+0000 mon.smithi099 (mon.0) 234 : audit [DBG] from='client.? 172.21.15.99:0/2501169940' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:51.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:51 smithi142 bash[20347]: audit 2024-01-27T23:28:50.762839+0000 mon.smithi142 (mon.1) 6 : audit [INF] from='client.? 172.21.15.142:0/4257590142' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "68a8340a-d72f-4888-8118-e3653b0e9cf6"}]: dispatch 2024-01-27T23:28:51.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:51 smithi142 bash[20347]: audit 2024-01-27T23:28:50.765651+0000 mon.smithi099 (mon.0) 235 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "68a8340a-d72f-4888-8118-e3653b0e9cf6"}]: dispatch 2024-01-27T23:28:51.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:51 smithi142 bash[20347]: audit 2024-01-27T23:28:50.777399+0000 mon.smithi099 (mon.0) 236 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "68a8340a-d72f-4888-8118-e3653b0e9cf6"}]': finished 2024-01-27T23:28:51.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:51 smithi142 bash[20347]: cluster 2024-01-27T23:28:50.777549+0000 mon.smithi099 (mon.0) 237 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-01-27T23:28:51.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:51 smithi142 bash[20347]: audit 2024-01-27T23:28:50.777769+0000 mon.smithi099 (mon.0) 238 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:51.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:51 smithi142 bash[20347]: audit 2024-01-27T23:28:50.778400+0000 mon.smithi099 (mon.0) 239 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:51.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:51 smithi142 bash[20347]: audit 2024-01-27T23:28:50.778759+0000 mon.smithi099 (mon.0) 240 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:51.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:51 smithi142 bash[20347]: audit 2024-01-27T23:28:50.779147+0000 mon.smithi099 (mon.0) 241 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:28:51.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:51 smithi142 bash[20347]: audit 2024-01-27T23:28:50.779488+0000 mon.smithi099 (mon.0) 242 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:28:51.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:51 smithi099 bash[16328]: audit 2024-01-27T23:28:50.762839+0000 mon.smithi142 (mon.1) 6 : audit [INF] from='client.? 172.21.15.142:0/4257590142' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "68a8340a-d72f-4888-8118-e3653b0e9cf6"}]: dispatch 2024-01-27T23:28:51.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:51 smithi099 bash[16328]: audit 2024-01-27T23:28:50.765651+0000 mon.smithi099 (mon.0) 235 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "68a8340a-d72f-4888-8118-e3653b0e9cf6"}]: dispatch 2024-01-27T23:28:51.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:51 smithi099 bash[16328]: audit 2024-01-27T23:28:50.777399+0000 mon.smithi099 (mon.0) 236 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "68a8340a-d72f-4888-8118-e3653b0e9cf6"}]': finished 2024-01-27T23:28:51.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:51 smithi099 bash[16328]: cluster 2024-01-27T23:28:50.777549+0000 mon.smithi099 (mon.0) 237 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-01-27T23:28:51.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:51 smithi099 bash[16328]: audit 2024-01-27T23:28:50.777769+0000 mon.smithi099 (mon.0) 238 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:51.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:51 smithi099 bash[16328]: audit 2024-01-27T23:28:50.778400+0000 mon.smithi099 (mon.0) 239 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:51.824 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:51 smithi099 bash[16328]: audit 2024-01-27T23:28:50.778759+0000 mon.smithi099 (mon.0) 240 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:51.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:51 smithi099 bash[16328]: audit 2024-01-27T23:28:50.779147+0000 mon.smithi099 (mon.0) 241 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:28:51.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:51 smithi099 bash[16328]: audit 2024-01-27T23:28:50.779488+0000 mon.smithi099 (mon.0) 242 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:28:53.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: cluster 2024-01-27T23:28:51.154818+0000 mgr.smithi099.hzjdah (mgr.14182) 37 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:53.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: audit 2024-01-27T23:28:51.833058+0000 mon.smithi142 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.142:0/538987249' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:53.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: audit 2024-01-27T23:28:52.363136+0000 mon.smithi099 (mon.0) 243 : audit [INF] from='client.? 172.21.15.99:0/810411297' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9d3293da-10c1-486d-b04d-4234b095c68f"}]: dispatch 2024-01-27T23:28:53.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: audit 2024-01-27T23:28:52.368361+0000 mon.smithi099 (mon.0) 244 : audit [INF] from='client.? 172.21.15.99:0/810411297' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9d3293da-10c1-486d-b04d-4234b095c68f"}]': finished 2024-01-27T23:28:53.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: cluster 2024-01-27T23:28:52.368422+0000 mon.smithi099 (mon.0) 245 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-01-27T23:28:53.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: audit 2024-01-27T23:28:52.368529+0000 mon.smithi099 (mon.0) 246 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:53.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: audit 2024-01-27T23:28:52.368808+0000 mon.smithi099 (mon.0) 247 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:53.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: audit 2024-01-27T23:28:52.368966+0000 mon.smithi099 (mon.0) 248 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:53.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: audit 2024-01-27T23:28:52.369133+0000 mon.smithi099 (mon.0) 249 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:28:53.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: audit 2024-01-27T23:28:52.369322+0000 mon.smithi099 (mon.0) 250 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:28:53.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:52 smithi142 bash[20347]: audit 2024-01-27T23:28:52.369545+0000 mon.smithi099 (mon.0) 251 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:28:53.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: cluster 2024-01-27T23:28:51.154818+0000 mgr.smithi099.hzjdah (mgr.14182) 37 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:53.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: audit 2024-01-27T23:28:51.833058+0000 mon.smithi142 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.142:0/538987249' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:53.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: audit 2024-01-27T23:28:52.363136+0000 mon.smithi099 (mon.0) 243 : audit [INF] from='client.? 172.21.15.99:0/810411297' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9d3293da-10c1-486d-b04d-4234b095c68f"}]: dispatch 2024-01-27T23:28:53.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: audit 2024-01-27T23:28:52.368361+0000 mon.smithi099 (mon.0) 244 : audit [INF] from='client.? 172.21.15.99:0/810411297' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9d3293da-10c1-486d-b04d-4234b095c68f"}]': finished 2024-01-27T23:28:53.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: cluster 2024-01-27T23:28:52.368422+0000 mon.smithi099 (mon.0) 245 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-01-27T23:28:53.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: audit 2024-01-27T23:28:52.368529+0000 mon.smithi099 (mon.0) 246 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:53.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: audit 2024-01-27T23:28:52.368808+0000 mon.smithi099 (mon.0) 247 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:53.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: audit 2024-01-27T23:28:52.368966+0000 mon.smithi099 (mon.0) 248 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:53.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: audit 2024-01-27T23:28:52.369133+0000 mon.smithi099 (mon.0) 249 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:28:53.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: audit 2024-01-27T23:28:52.369322+0000 mon.smithi099 (mon.0) 250 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:28:53.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:52 smithi099 bash[16328]: audit 2024-01-27T23:28:52.369545+0000 mon.smithi099 (mon.0) 251 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:28:53.148 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:28:53.802 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1706398132,"num_remapped_pgs":0} 2024-01-27T23:28:54.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:53 smithi142 bash[20347]: audit 2024-01-27T23:28:53.158024+0000 mon.smithi099 (mon.0) 252 : audit [DBG] from='client.? 172.21.15.99:0/299425878' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:28:54.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:53 smithi142 bash[20347]: audit 2024-01-27T23:28:53.497064+0000 mon.smithi099 (mon.0) 253 : audit [DBG] from='client.? 172.21.15.99:0/180808452' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:54.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:53 smithi099 bash[16328]: audit 2024-01-27T23:28:53.158024+0000 mon.smithi099 (mon.0) 252 : audit [DBG] from='client.? 172.21.15.99:0/299425878' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:28:54.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:53 smithi099 bash[16328]: audit 2024-01-27T23:28:53.497064+0000 mon.smithi099 (mon.0) 253 : audit [DBG] from='client.? 172.21.15.99:0/180808452' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:54.803 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:28:55.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: cluster 2024-01-27T23:28:53.155181+0000 mgr.smithi099.hzjdah (mgr.14182) 38 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:55.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: audit 2024-01-27T23:28:54.569451+0000 mon.smithi142 (mon.1) 8 : audit [INF] from='client.? 172.21.15.142:0/573114044' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b371799d-60d7-4b28-9ae4-cdee2ccfd590"}]: dispatch 2024-01-27T23:28:55.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: audit 2024-01-27T23:28:54.571704+0000 mon.smithi099 (mon.0) 254 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b371799d-60d7-4b28-9ae4-cdee2ccfd590"}]: dispatch 2024-01-27T23:28:55.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: audit 2024-01-27T23:28:54.578823+0000 mon.smithi099 (mon.0) 255 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b371799d-60d7-4b28-9ae4-cdee2ccfd590"}]': finished 2024-01-27T23:28:55.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: cluster 2024-01-27T23:28:54.578954+0000 mon.smithi099 (mon.0) 256 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-01-27T23:28:55.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: audit 2024-01-27T23:28:54.579162+0000 mon.smithi099 (mon.0) 257 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:55.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: audit 2024-01-27T23:28:54.579763+0000 mon.smithi099 (mon.0) 258 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:55.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: audit 2024-01-27T23:28:54.580124+0000 mon.smithi099 (mon.0) 259 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:55.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: audit 2024-01-27T23:28:54.580479+0000 mon.smithi099 (mon.0) 260 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:28:55.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: audit 2024-01-27T23:28:54.580791+0000 mon.smithi099 (mon.0) 261 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:28:55.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: audit 2024-01-27T23:28:54.581104+0000 mon.smithi099 (mon.0) 262 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:28:55.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:54 smithi142 bash[20347]: audit 2024-01-27T23:28:54.581421+0000 mon.smithi099 (mon.0) 263 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:28:55.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: cluster 2024-01-27T23:28:53.155181+0000 mgr.smithi099.hzjdah (mgr.14182) 38 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:55.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: audit 2024-01-27T23:28:54.569451+0000 mon.smithi142 (mon.1) 8 : audit [INF] from='client.? 172.21.15.142:0/573114044' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b371799d-60d7-4b28-9ae4-cdee2ccfd590"}]: dispatch 2024-01-27T23:28:55.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: audit 2024-01-27T23:28:54.571704+0000 mon.smithi099 (mon.0) 254 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b371799d-60d7-4b28-9ae4-cdee2ccfd590"}]: dispatch 2024-01-27T23:28:55.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: audit 2024-01-27T23:28:54.578823+0000 mon.smithi099 (mon.0) 255 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b371799d-60d7-4b28-9ae4-cdee2ccfd590"}]': finished 2024-01-27T23:28:55.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: cluster 2024-01-27T23:28:54.578954+0000 mon.smithi099 (mon.0) 256 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-01-27T23:28:55.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: audit 2024-01-27T23:28:54.579162+0000 mon.smithi099 (mon.0) 257 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:55.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: audit 2024-01-27T23:28:54.579763+0000 mon.smithi099 (mon.0) 258 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:55.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: audit 2024-01-27T23:28:54.580124+0000 mon.smithi099 (mon.0) 259 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:55.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: audit 2024-01-27T23:28:54.580479+0000 mon.smithi099 (mon.0) 260 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:28:55.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: audit 2024-01-27T23:28:54.580791+0000 mon.smithi099 (mon.0) 261 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:28:55.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: audit 2024-01-27T23:28:54.581104+0000 mon.smithi099 (mon.0) 262 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:28:55.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:54 smithi099 bash[16328]: audit 2024-01-27T23:28:54.581421+0000 mon.smithi099 (mon.0) 263 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:28:56.045 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:55 smithi142 bash[20347]: audit 2024-01-27T23:28:55.633575+0000 mon.smithi142 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.142:0/3321424022' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:56.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:55 smithi099 bash[16328]: audit 2024-01-27T23:28:55.633575+0000 mon.smithi142 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.142:0/3321424022' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: cluster 2024-01-27T23:28:55.155565+0000 mgr.smithi099.hzjdah (mgr.14182) 39 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: audit 2024-01-27T23:28:56.243251+0000 mon.smithi099 (mon.0) 264 : audit [INF] from='client.? 172.21.15.99:0/836407999' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "03bfd01d-bba8-4cc5-81f5-d1b8c939a6c7"}]: dispatch 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: audit 2024-01-27T23:28:56.248615+0000 mon.smithi099 (mon.0) 265 : audit [INF] from='client.? 172.21.15.99:0/836407999' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "03bfd01d-bba8-4cc5-81f5-d1b8c939a6c7"}]': finished 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: cluster 2024-01-27T23:28:56.248659+0000 mon.smithi099 (mon.0) 266 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: audit 2024-01-27T23:28:56.248751+0000 mon.smithi099 (mon.0) 267 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: audit 2024-01-27T23:28:56.249006+0000 mon.smithi099 (mon.0) 268 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: audit 2024-01-27T23:28:56.249149+0000 mon.smithi099 (mon.0) 269 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: audit 2024-01-27T23:28:56.249287+0000 mon.smithi099 (mon.0) 270 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: audit 2024-01-27T23:28:56.249420+0000 mon.smithi099 (mon.0) 271 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: audit 2024-01-27T23:28:56.249579+0000 mon.smithi099 (mon.0) 272 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: audit 2024-01-27T23:28:56.249698+0000 mon.smithi099 (mon.0) 273 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:28:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:56 smithi142 bash[20347]: audit 2024-01-27T23:28:56.249848+0000 mon.smithi099 (mon.0) 274 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:28:57.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: cluster 2024-01-27T23:28:55.155565+0000 mgr.smithi099.hzjdah (mgr.14182) 39 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:57.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: audit 2024-01-27T23:28:56.243251+0000 mon.smithi099 (mon.0) 264 : audit [INF] from='client.? 172.21.15.99:0/836407999' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "03bfd01d-bba8-4cc5-81f5-d1b8c939a6c7"}]: dispatch 2024-01-27T23:28:57.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: audit 2024-01-27T23:28:56.248615+0000 mon.smithi099 (mon.0) 265 : audit [INF] from='client.? 172.21.15.99:0/836407999' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "03bfd01d-bba8-4cc5-81f5-d1b8c939a6c7"}]': finished 2024-01-27T23:28:57.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: cluster 2024-01-27T23:28:56.248659+0000 mon.smithi099 (mon.0) 266 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-01-27T23:28:57.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: audit 2024-01-27T23:28:56.248751+0000 mon.smithi099 (mon.0) 267 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:28:57.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: audit 2024-01-27T23:28:56.249006+0000 mon.smithi099 (mon.0) 268 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:28:57.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: audit 2024-01-27T23:28:56.249149+0000 mon.smithi099 (mon.0) 269 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:28:57.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: audit 2024-01-27T23:28:56.249287+0000 mon.smithi099 (mon.0) 270 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:28:57.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: audit 2024-01-27T23:28:56.249420+0000 mon.smithi099 (mon.0) 271 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:28:57.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: audit 2024-01-27T23:28:56.249579+0000 mon.smithi099 (mon.0) 272 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:28:57.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: audit 2024-01-27T23:28:56.249698+0000 mon.smithi099 (mon.0) 273 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:28:57.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:56 smithi099 bash[16328]: audit 2024-01-27T23:28:56.249848+0000 mon.smithi099 (mon.0) 274 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:28:58.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:57 smithi099 bash[16328]: cluster 2024-01-27T23:28:57.156133+0000 mgr.smithi099.hzjdah (mgr.14182) 40 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:58.119 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:57 smithi142 bash[20347]: cluster 2024-01-27T23:28:57.156133+0000 mgr.smithi099.hzjdah (mgr.14182) 40 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:28:58.330 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:28:58.931 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706398136,"num_remapped_pgs":0} 2024-01-27T23:28:59.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:58 smithi099 bash[16328]: audit 2024-01-27T23:28:58.189029+0000 mon.smithi099 (mon.0) 275 : audit [DBG] from='client.? 172.21.15.99:0/4182443020' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:59.074 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:58 smithi099 bash[16328]: audit 2024-01-27T23:28:58.340561+0000 mon.smithi099 (mon.0) 276 : audit [DBG] from='client.? 172.21.15.99:0/1353011237' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:28:59.295 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:58 smithi142 bash[20347]: audit 2024-01-27T23:28:58.189029+0000 mon.smithi099 (mon.0) 275 : audit [DBG] from='client.? 172.21.15.99:0/4182443020' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:28:59.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:58 smithi142 bash[20347]: audit 2024-01-27T23:28:58.340561+0000 mon.smithi099 (mon.0) 276 : audit [DBG] from='client.? 172.21.15.99:0/1353011237' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:28:59.933 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:29:00.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:28:59 smithi099 bash[16328]: cluster 2024-01-27T23:28:59.156528+0000 mgr.smithi099.hzjdah (mgr.14182) 41 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:00.295 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:28:59 smithi142 bash[20347]: cluster 2024-01-27T23:28:59.156528+0000 mgr.smithi099.hzjdah (mgr.14182) 41 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:02.545 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:02 smithi142 bash[20347]: cluster 2024-01-27T23:29:01.156984+0000 mgr.smithi099.hzjdah (mgr.14182) 42 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:02.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:02 smithi099 bash[16328]: cluster 2024-01-27T23:29:01.156984+0000 mgr.smithi099.hzjdah (mgr.14182) 42 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:03.355 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:29:03.953 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706398136,"num_remapped_pgs":0} 2024-01-27T23:29:04.485 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:04 smithi142 bash[20347]: cluster 2024-01-27T23:29:03.157337+0000 mgr.smithi099.hzjdah (mgr.14182) 43 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:04.485 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:04 smithi142 bash[20347]: audit 2024-01-27T23:29:03.364182+0000 mon.smithi099 (mon.0) 277 : audit [DBG] from='client.? 172.21.15.99:0/480251172' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:04.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:04 smithi099 bash[16328]: cluster 2024-01-27T23:29:03.157337+0000 mgr.smithi099.hzjdah (mgr.14182) 43 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:04.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:04 smithi099 bash[16328]: audit 2024-01-27T23:29:03.364182+0000 mon.smithi099 (mon.0) 277 : audit [DBG] from='client.? 172.21.15.99:0/480251172' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:04.954 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:29:06.230 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:06 smithi099 bash[16328]: cluster 2024-01-27T23:29:05.157823+0000 mgr.smithi099.hzjdah (mgr.14182) 44 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:06.545 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:06 smithi142 bash[20347]: cluster 2024-01-27T23:29:05.157823+0000 mgr.smithi099.hzjdah (mgr.14182) 44 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:07.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:07 smithi142 bash[20347]: audit 2024-01-27T23:29:06.952151+0000 mon.smithi099 (mon.0) 278 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-01-27T23:29:07.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:07 smithi142 bash[20347]: audit 2024-01-27T23:29:06.953810+0000 mon.smithi099 (mon.0) 279 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:07.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:07 smithi099 bash[16328]: audit 2024-01-27T23:29:06.952151+0000 mon.smithi099 (mon.0) 278 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-01-27T23:29:07.574 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:07 smithi099 bash[16328]: audit 2024-01-27T23:29:06.953810+0000 mon.smithi099 (mon.0) 279 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:08.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:08 smithi142 bash[20347]: cephadm 2024-01-27T23:29:06.955369+0000 mgr.smithi099.hzjdah (mgr.14182) 45 : cephadm [INF] Deploying daemon osd.0 on smithi142 2024-01-27T23:29:08.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:08 smithi142 bash[20347]: cluster 2024-01-27T23:29:07.158332+0000 mgr.smithi099.hzjdah (mgr.14182) 46 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:08.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:08 smithi099 bash[16328]: cephadm 2024-01-27T23:29:06.955369+0000 mgr.smithi099.hzjdah (mgr.14182) 45 : cephadm [INF] Deploying daemon osd.0 on smithi142 2024-01-27T23:29:08.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:08 smithi099 bash[16328]: cluster 2024-01-27T23:29:07.158332+0000 mgr.smithi099.hzjdah (mgr.14182) 46 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:08.342 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:29:09.326 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706398136,"num_remapped_pgs":0} 2024-01-27T23:29:09.534 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:09 smithi142 bash[20347]: audit 2024-01-27T23:29:08.351487+0000 mon.smithi099 (mon.0) 280 : audit [DBG] from='client.? 172.21.15.99:0/718288523' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:09.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:09 smithi099 bash[16328]: audit 2024-01-27T23:29:08.351487+0000 mon.smithi099 (mon.0) 280 : audit [DBG] from='client.? 172.21.15.99:0/718288523' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:10.327 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:29:10.589 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:10 smithi099 bash[16328]: cluster 2024-01-27T23:29:09.158841+0000 mgr.smithi099.hzjdah (mgr.14182) 47 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:10.670 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:10 smithi142 bash[20347]: cluster 2024-01-27T23:29:09.158841+0000 mgr.smithi099.hzjdah (mgr.14182) 47 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:12.043 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:11 smithi099 bash[16328]: audit 2024-01-27T23:29:10.718655+0000 mon.smithi099 (mon.0) 281 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:12.043 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:11 smithi099 bash[16328]: audit 2024-01-27T23:29:10.719796+0000 mon.smithi099 (mon.0) 282 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-01-27T23:29:12.043 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:11 smithi099 bash[16328]: audit 2024-01-27T23:29:10.721100+0000 mon.smithi099 (mon.0) 283 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:12.043 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:11 smithi099 bash[16328]: cephadm 2024-01-27T23:29:10.722138+0000 mgr.smithi099.hzjdah (mgr.14182) 48 : cephadm [INF] Deploying daemon osd.2 on smithi142 2024-01-27T23:29:12.043 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:11 smithi099 bash[16328]: audit 2024-01-27T23:29:11.028886+0000 mon.smithi099 (mon.0) 284 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-01-27T23:29:12.043 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:11 smithi099 bash[16328]: audit 2024-01-27T23:29:11.030227+0000 mon.smithi099 (mon.0) 285 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:12.045 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:11 smithi142 bash[20347]: audit 2024-01-27T23:29:10.718655+0000 mon.smithi099 (mon.0) 281 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:12.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:11 smithi142 bash[20347]: audit 2024-01-27T23:29:10.719796+0000 mon.smithi099 (mon.0) 282 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-01-27T23:29:12.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:11 smithi142 bash[20347]: audit 2024-01-27T23:29:10.721100+0000 mon.smithi099 (mon.0) 283 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:12.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:11 smithi142 bash[20347]: cephadm 2024-01-27T23:29:10.722138+0000 mgr.smithi099.hzjdah (mgr.14182) 48 : cephadm [INF] Deploying daemon osd.2 on smithi142 2024-01-27T23:29:12.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:11 smithi142 bash[20347]: audit 2024-01-27T23:29:11.028886+0000 mon.smithi099 (mon.0) 284 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-01-27T23:29:12.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:11 smithi142 bash[20347]: audit 2024-01-27T23:29:11.030227+0000 mon.smithi099 (mon.0) 285 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:12.795 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:12 smithi142 bash[20347]: cephadm 2024-01-27T23:29:11.031569+0000 mgr.smithi099.hzjdah (mgr.14182) 49 : cephadm [INF] Deploying daemon osd.1 on smithi099 2024-01-27T23:29:12.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:12 smithi142 bash[20347]: cluster 2024-01-27T23:29:11.159141+0000 mgr.smithi099.hzjdah (mgr.14182) 50 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:13.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:12 smithi099 bash[16328]: cephadm 2024-01-27T23:29:11.031569+0000 mgr.smithi099.hzjdah (mgr.14182) 49 : cephadm [INF] Deploying daemon osd.1 on smithi099 2024-01-27T23:29:13.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:12 smithi099 bash[16328]: cluster 2024-01-27T23:29:11.159141+0000 mgr.smithi099.hzjdah (mgr.14182) 50 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:14.480 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:29:14.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:14 smithi099 bash[16328]: cluster 2024-01-27T23:29:13.159549+0000 mgr.smithi099.hzjdah (mgr.14182) 51 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:14.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:14 smithi099 bash[16328]: audit 2024-01-27T23:29:14.489717+0000 mon.smithi099 (mon.0) 286 : audit [DBG] from='client.? 172.21.15.99:0/1614034925' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:14.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:14 smithi142 bash[20347]: cluster 2024-01-27T23:29:13.159549+0000 mgr.smithi099.hzjdah (mgr.14182) 51 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:14.872 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:14 smithi142 bash[20347]: audit 2024-01-27T23:29:14.489717+0000 mon.smithi099 (mon.0) 286 : audit [DBG] from='client.? 172.21.15.99:0/1614034925' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:15.186 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706398136,"num_remapped_pgs":0} 2024-01-27T23:29:16.187 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:29:17.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:16 smithi142 bash[20347]: cluster 2024-01-27T23:29:15.159977+0000 mgr.smithi099.hzjdah (mgr.14182) 52 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:17.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:16 smithi142 bash[20347]: audit 2024-01-27T23:29:15.886413+0000 mon.smithi099 (mon.0) 287 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:17.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:16 smithi142 bash[20347]: audit 2024-01-27T23:29:15.887586+0000 mon.smithi099 (mon.0) 288 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-01-27T23:29:17.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:16 smithi142 bash[20347]: audit 2024-01-27T23:29:15.889112+0000 mon.smithi099 (mon.0) 289 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:17.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:16 smithi142 bash[20347]: audit 2024-01-27T23:29:15.918003+0000 mon.smithi099 (mon.0) 290 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:17.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:16 smithi142 bash[20347]: audit 2024-01-27T23:29:15.919257+0000 mon.smithi099 (mon.0) 291 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-01-27T23:29:17.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:16 smithi142 bash[20347]: audit 2024-01-27T23:29:15.920320+0000 mon.smithi099 (mon.0) 292 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:17.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:16 smithi099 bash[16328]: cluster 2024-01-27T23:29:15.159977+0000 mgr.smithi099.hzjdah (mgr.14182) 52 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:17.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:16 smithi099 bash[16328]: audit 2024-01-27T23:29:15.886413+0000 mon.smithi099 (mon.0) 287 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:17.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:16 smithi099 bash[16328]: audit 2024-01-27T23:29:15.887586+0000 mon.smithi099 (mon.0) 288 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-01-27T23:29:17.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:16 smithi099 bash[16328]: audit 2024-01-27T23:29:15.889112+0000 mon.smithi099 (mon.0) 289 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:17.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:16 smithi099 bash[16328]: audit 2024-01-27T23:29:15.918003+0000 mon.smithi099 (mon.0) 290 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:17.076 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:16 smithi099 bash[16328]: audit 2024-01-27T23:29:15.919257+0000 mon.smithi099 (mon.0) 291 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-01-27T23:29:17.076 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:16 smithi099 bash[16328]: audit 2024-01-27T23:29:15.920320+0000 mon.smithi099 (mon.0) 292 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:17.873 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:17 smithi142 bash[20347]: cephadm 2024-01-27T23:29:15.890124+0000 mgr.smithi099.hzjdah (mgr.14182) 53 : cephadm [INF] Deploying daemon osd.3 on smithi099 2024-01-27T23:29:17.874 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:17 smithi142 bash[20347]: cephadm 2024-01-27T23:29:15.921275+0000 mgr.smithi099.hzjdah (mgr.14182) 54 : cephadm [INF] Deploying daemon osd.4 on smithi142 2024-01-27T23:29:18.000 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:17 smithi099 bash[16328]: cephadm 2024-01-27T23:29:15.890124+0000 mgr.smithi099.hzjdah (mgr.14182) 53 : cephadm [INF] Deploying daemon osd.3 on smithi099 2024-01-27T23:29:18.000 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:17 smithi099 bash[16328]: cephadm 2024-01-27T23:29:15.921275+0000 mgr.smithi099.hzjdah (mgr.14182) 54 : cephadm [INF] Deploying daemon osd.4 on smithi142 2024-01-27T23:29:19.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:18 smithi142 bash[20347]: cluster 2024-01-27T23:29:17.160486+0000 mgr.smithi099.hzjdah (mgr.14182) 55 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:19.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:18 smithi142 bash[20347]: audit 2024-01-27T23:29:18.599202+0000 mon.smithi142 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.142:6800/2143864733,v1:172.21.15.142:6801/2143864733]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-27T23:29:19.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:18 smithi142 bash[20347]: audit 2024-01-27T23:29:18.600378+0000 mon.smithi099 (mon.0) 293 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-27T23:29:19.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:18 smithi099 bash[16328]: cluster 2024-01-27T23:29:17.160486+0000 mgr.smithi099.hzjdah (mgr.14182) 55 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:19.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:18 smithi099 bash[16328]: audit 2024-01-27T23:29:18.599202+0000 mon.smithi142 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.142:6800/2143864733,v1:172.21.15.142:6801/2143864733]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-27T23:29:19.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:18 smithi099 bash[16328]: audit 2024-01-27T23:29:18.600378+0000 mon.smithi099 (mon.0) 293 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-27T23:29:20.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: cluster 2024-01-27T23:29:19.160959+0000 mgr.smithi099.hzjdah (mgr.14182) 56 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:20.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.385485+0000 mon.smithi099 (mon.0) 294 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-01-27T23:29:20.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: cluster 2024-01-27T23:29:19.385550+0000 mon.smithi099 (mon.0) 295 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-01-27T23:29:20.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.385763+0000 mon.smithi099 (mon.0) 296 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:29:20.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.386468+0000 mon.smithi099 (mon.0) 297 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:20.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.386935+0000 mon.smithi099 (mon.0) 298 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:20.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.387366+0000 mon.smithi099 (mon.0) 299 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:20.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.387815+0000 mon.smithi099 (mon.0) 300 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:20.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.388269+0000 mon.smithi099 (mon.0) 301 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:20.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.388633+0000 mon.smithi142 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.142:6800/2143864733,v1:172.21.15.142:6801/2143864733]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:20.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.388732+0000 mon.smithi099 (mon.0) 302 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:20.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.389152+0000 mon.smithi099 (mon.0) 303 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:20.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:20 smithi142 bash[20347]: audit 2024-01-27T23:29:19.389920+0000 mon.smithi099 (mon.0) 304 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:20.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: cluster 2024-01-27T23:29:19.160959+0000 mgr.smithi099.hzjdah (mgr.14182) 56 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:20.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.385485+0000 mon.smithi099 (mon.0) 294 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-01-27T23:29:20.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: cluster 2024-01-27T23:29:19.385550+0000 mon.smithi099 (mon.0) 295 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-01-27T23:29:20.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.385763+0000 mon.smithi099 (mon.0) 296 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:29:20.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.386468+0000 mon.smithi099 (mon.0) 297 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:20.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.386935+0000 mon.smithi099 (mon.0) 298 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:20.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.387366+0000 mon.smithi099 (mon.0) 299 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:20.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.387815+0000 mon.smithi099 (mon.0) 300 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:20.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.388269+0000 mon.smithi099 (mon.0) 301 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:20.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.388633+0000 mon.smithi142 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.142:6800/2143864733,v1:172.21.15.142:6801/2143864733]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:20.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.388732+0000 mon.smithi099 (mon.0) 302 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:20.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.389152+0000 mon.smithi099 (mon.0) 303 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:20.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:20 smithi099 bash[16328]: audit 2024-01-27T23:29:19.389920+0000 mon.smithi099 (mon.0) 304 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:21.387 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:20.388449+0000 mon.smithi099 (mon.0) 305 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-01-27T23:29:21.387 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: cluster 2024-01-27T23:29:20.388570+0000 mon.smithi099 (mon.0) 306 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-01-27T23:29:21.387 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:20.389382+0000 mon.smithi099 (mon.0) 307 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:29:21.387 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:20.390153+0000 mon.smithi099 (mon.0) 308 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:21.387 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:20.390439+0000 mon.smithi099 (mon.0) 309 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:21.387 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:20.390896+0000 mon.smithi099 (mon.0) 310 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:21.387 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:20.395408+0000 mon.smithi099 (mon.0) 311 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:21.387 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:20.395919+0000 mon.smithi099 (mon.0) 312 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:21.388 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:20.396439+0000 mon.smithi099 (mon.0) 313 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:21.388 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:20.396910+0000 mon.smithi099 (mon.0) 314 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:21.388 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:20.397427+0000 mon.smithi099 (mon.0) 315 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:29:21.388 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:21.385006+0000 mon.smithi099 (mon.0) 316 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:21.388 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:21.386160+0000 mon.smithi099 (mon.0) 317 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-01-27T23:29:21.388 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:21 smithi099 bash[16328]: audit 2024-01-27T23:29:21.387081+0000 mon.smithi099 (mon.0) 318 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:21.521 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:29:21.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:20.388449+0000 mon.smithi099 (mon.0) 305 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-01-27T23:29:21.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: cluster 2024-01-27T23:29:20.388570+0000 mon.smithi099 (mon.0) 306 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-01-27T23:29:21.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:20.389382+0000 mon.smithi099 (mon.0) 307 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:29:21.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:20.390153+0000 mon.smithi099 (mon.0) 308 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:21.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:20.390439+0000 mon.smithi099 (mon.0) 309 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:21.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:20.390896+0000 mon.smithi099 (mon.0) 310 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:21.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:20.395408+0000 mon.smithi099 (mon.0) 311 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:21.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:20.395919+0000 mon.smithi099 (mon.0) 312 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:21.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:20.396439+0000 mon.smithi099 (mon.0) 313 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:21.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:20.396910+0000 mon.smithi099 (mon.0) 314 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:21.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:20.397427+0000 mon.smithi099 (mon.0) 315 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:29:21.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:21.385006+0000 mon.smithi099 (mon.0) 316 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:21.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:21.386160+0000 mon.smithi099 (mon.0) 317 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-01-27T23:29:21.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:21 smithi142 bash[20347]: audit 2024-01-27T23:29:21.387081+0000 mon.smithi099 (mon.0) 318 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:22.393 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":16,"num_osds":8,"num_up_osds":1,"osd_up_since":1706398161,"num_in_osds":8,"osd_in_since":1706398136,"num_remapped_pgs":0} 2024-01-27T23:29:22.712 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: cluster 2024-01-27T23:29:19.640755+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:22.712 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: cluster 2024-01-27T23:29:19.640862+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:22.712 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: cluster 2024-01-27T23:29:21.161416+0000 mgr.smithi099.hzjdah (mgr.14182) 57 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:22.713 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: cephadm 2024-01-27T23:29:21.387942+0000 mgr.smithi099.hzjdah (mgr.14182) 58 : cephadm [INF] Deploying daemon osd.6 on smithi142 2024-01-27T23:29:22.713 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:21.399542+0000 mon.smithi099 (mon.0) 319 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:29:22.713 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: cluster 2024-01-27T23:29:21.404858+0000 mon.smithi099 (mon.0) 320 : cluster [INF] osd.0 [v2:172.21.15.142:6800/2143864733,v1:172.21.15.142:6801/2143864733] boot 2024-01-27T23:29:22.713 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: cluster 2024-01-27T23:29:21.404936+0000 mon.smithi099 (mon.0) 321 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-01-27T23:29:22.713 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:21.405090+0000 mon.smithi099 (mon.0) 322 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:29:22.713 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:21.405573+0000 mon.smithi099 (mon.0) 323 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:22.713 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:21.405806+0000 mon.smithi099 (mon.0) 324 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:22.713 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:21.406065+0000 mon.smithi099 (mon.0) 325 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:22.714 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:21.406306+0000 mon.smithi099 (mon.0) 326 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:22.714 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:21.406545+0000 mon.smithi099 (mon.0) 327 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:22.714 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:21.406771+0000 mon.smithi099 (mon.0) 328 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:22.714 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:21.407037+0000 mon.smithi099 (mon.0) 329 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:22.714 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:21.529497+0000 mon.smithi099 (mon.0) 330 : audit [DBG] from='client.? 172.21.15.99:0/1131860371' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:22.714 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:22.299847+0000 mon.smithi099 (mon.0) 331 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:22.714 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:22.301062+0000 mon.smithi099 (mon.0) 332 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-01-27T23:29:22.714 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:22 smithi142 bash[20347]: audit 2024-01-27T23:29:22.302091+0000 mon.smithi099 (mon.0) 333 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:22.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: cluster 2024-01-27T23:29:19.640755+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:22.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: cluster 2024-01-27T23:29:19.640862+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:22.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: cluster 2024-01-27T23:29:21.161416+0000 mgr.smithi099.hzjdah (mgr.14182) 57 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:29:22.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: cephadm 2024-01-27T23:29:21.387942+0000 mgr.smithi099.hzjdah (mgr.14182) 58 : cephadm [INF] Deploying daemon osd.6 on smithi142 2024-01-27T23:29:22.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:21.399542+0000 mon.smithi099 (mon.0) 319 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:29:22.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: cluster 2024-01-27T23:29:21.404858+0000 mon.smithi099 (mon.0) 320 : cluster [INF] osd.0 [v2:172.21.15.142:6800/2143864733,v1:172.21.15.142:6801/2143864733] boot 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: cluster 2024-01-27T23:29:21.404936+0000 mon.smithi099 (mon.0) 321 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:21.405090+0000 mon.smithi099 (mon.0) 322 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:21.405573+0000 mon.smithi099 (mon.0) 323 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:21.405806+0000 mon.smithi099 (mon.0) 324 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:21.406065+0000 mon.smithi099 (mon.0) 325 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:21.406306+0000 mon.smithi099 (mon.0) 326 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:21.406545+0000 mon.smithi099 (mon.0) 327 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:21.406771+0000 mon.smithi099 (mon.0) 328 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:21.407037+0000 mon.smithi099 (mon.0) 329 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:21.529497+0000 mon.smithi099 (mon.0) 330 : audit [DBG] from='client.? 172.21.15.99:0/1131860371' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:22.299847+0000 mon.smithi099 (mon.0) 331 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:22.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:22.301062+0000 mon.smithi099 (mon.0) 332 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-01-27T23:29:22.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:22 smithi099 bash[16328]: audit 2024-01-27T23:29:22.302091+0000 mon.smithi099 (mon.0) 333 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:23.394 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:29:23.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:23 smithi142 bash[20347]: cephadm 2024-01-27T23:29:22.303282+0000 mgr.smithi099.hzjdah (mgr.14182) 59 : cephadm [INF] Deploying daemon osd.5 on smithi099 2024-01-27T23:29:23.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:23 smithi142 bash[20347]: cluster 2024-01-27T23:29:22.410911+0000 mon.smithi099 (mon.0) 334 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-01-27T23:29:23.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:23 smithi142 bash[20347]: audit 2024-01-27T23:29:22.411143+0000 mon.smithi099 (mon.0) 335 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:23.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:23 smithi142 bash[20347]: audit 2024-01-27T23:29:22.411936+0000 mon.smithi099 (mon.0) 336 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:23.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:23 smithi142 bash[20347]: audit 2024-01-27T23:29:22.412502+0000 mon.smithi099 (mon.0) 337 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:23.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:23 smithi142 bash[20347]: audit 2024-01-27T23:29:22.413080+0000 mon.smithi099 (mon.0) 338 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:23.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:23 smithi142 bash[20347]: audit 2024-01-27T23:29:22.413651+0000 mon.smithi099 (mon.0) 339 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:23.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:23 smithi142 bash[20347]: audit 2024-01-27T23:29:22.414188+0000 mon.smithi099 (mon.0) 340 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:23.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:23 smithi142 bash[20347]: audit 2024-01-27T23:29:22.414710+0000 mon.smithi099 (mon.0) 341 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:23.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:23 smithi099 bash[16328]: cephadm 2024-01-27T23:29:22.303282+0000 mgr.smithi099.hzjdah (mgr.14182) 59 : cephadm [INF] Deploying daemon osd.5 on smithi099 2024-01-27T23:29:23.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:23 smithi099 bash[16328]: cluster 2024-01-27T23:29:22.410911+0000 mon.smithi099 (mon.0) 334 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-01-27T23:29:23.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:23 smithi099 bash[16328]: audit 2024-01-27T23:29:22.411143+0000 mon.smithi099 (mon.0) 335 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:23.825 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:23 smithi099 bash[16328]: audit 2024-01-27T23:29:22.411936+0000 mon.smithi099 (mon.0) 336 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:23.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:23 smithi099 bash[16328]: audit 2024-01-27T23:29:22.412502+0000 mon.smithi099 (mon.0) 337 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:23.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:23 smithi099 bash[16328]: audit 2024-01-27T23:29:22.413080+0000 mon.smithi099 (mon.0) 338 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:23.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:23 smithi099 bash[16328]: audit 2024-01-27T23:29:22.413651+0000 mon.smithi099 (mon.0) 339 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:23.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:23 smithi099 bash[16328]: audit 2024-01-27T23:29:22.414188+0000 mon.smithi099 (mon.0) 340 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:23.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:23 smithi099 bash[16328]: audit 2024-01-27T23:29:22.414710+0000 mon.smithi099 (mon.0) 341 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:24.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:24 smithi099 bash[16328]: cluster 2024-01-27T23:29:23.161958+0000 mgr.smithi099.hzjdah (mgr.14182) 60 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-01-27T23:29:24.575 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:24 smithi099 bash[16328]: audit 2024-01-27T23:29:23.609672+0000 mon.smithi142 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.142:6808/2474935723,v1:172.21.15.142:6809/2474935723]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-27T23:29:24.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:24 smithi099 bash[16328]: audit 2024-01-27T23:29:23.610567+0000 mon.smithi099 (mon.0) 342 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-27T23:29:24.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:24 smithi142 bash[20347]: cluster 2024-01-27T23:29:23.161958+0000 mgr.smithi099.hzjdah (mgr.14182) 60 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-01-27T23:29:24.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:24 smithi142 bash[20347]: audit 2024-01-27T23:29:23.609672+0000 mon.smithi142 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.142:6808/2474935723,v1:172.21.15.142:6809/2474935723]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-27T23:29:24.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:24 smithi142 bash[20347]: audit 2024-01-27T23:29:23.610567+0000 mon.smithi099 (mon.0) 342 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.427040+0000 mon.smithi099 (mon.0) 343 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: cluster 2024-01-27T23:29:24.427181+0000 mon.smithi099 (mon.0) 344 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.427404+0000 mon.smithi099 (mon.0) 345 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.427682+0000 mon.smithi142 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.142:6808/2474935723,v1:172.21.15.142:6809/2474935723]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.427973+0000 mon.smithi099 (mon.0) 346 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.428317+0000 mon.smithi099 (mon.0) 347 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.428726+0000 mon.smithi099 (mon.0) 348 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.429170+0000 mon.smithi099 (mon.0) 349 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.429653+0000 mon.smithi099 (mon.0) 350 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.430008+0000 mon.smithi099 (mon.0) 351 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:25.682 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.430340+0000 mon.smithi099 (mon.0) 352 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:25.683 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:25 smithi142 bash[20347]: audit 2024-01-27T23:29:24.861387+0000 mon.smithi099 (mon.0) 353 : audit [INF] from='osd.1 [v2:172.21.15.99:6802/3831341837,v1:172.21.15.99:6803/3831341837]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-01-27T23:29:25.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.427040+0000 mon.smithi099 (mon.0) 343 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-01-27T23:29:25.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: cluster 2024-01-27T23:29:24.427181+0000 mon.smithi099 (mon.0) 344 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-01-27T23:29:25.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.427404+0000 mon.smithi099 (mon.0) 345 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:25.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.427682+0000 mon.smithi142 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.142:6808/2474935723,v1:172.21.15.142:6809/2474935723]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:25.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.427973+0000 mon.smithi099 (mon.0) 346 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:25.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.428317+0000 mon.smithi099 (mon.0) 347 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:25.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.428726+0000 mon.smithi099 (mon.0) 348 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:25.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.429170+0000 mon.smithi099 (mon.0) 349 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:25.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.429653+0000 mon.smithi099 (mon.0) 350 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:25.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.430008+0000 mon.smithi099 (mon.0) 351 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:25.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.430340+0000 mon.smithi099 (mon.0) 352 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:25.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:25 smithi099 bash[16328]: audit 2024-01-27T23:29:24.861387+0000 mon.smithi099 (mon.0) 353 : audit [INF] from='osd.1 [v2:172.21.15.99:6802/3831341837,v1:172.21.15.99:6803/3831341837]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-01-27T23:29:26.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: cluster 2024-01-27T23:29:25.162465+0000 mgr.smithi099.hzjdah (mgr.14182) 61 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-01-27T23:29:26.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.429321+0000 mon.smithi099 (mon.0) 354 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-01-27T23:29:26.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.429396+0000 mon.smithi099 (mon.0) 355 : audit [INF] from='osd.1 [v2:172.21.15.99:6802/3831341837,v1:172.21.15.99:6803/3831341837]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-01-27T23:29:26.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: cluster 2024-01-27T23:29:25.429455+0000 mon.smithi099 (mon.0) 356 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-01-27T23:29:26.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.430023+0000 mon.smithi099 (mon.0) 357 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:26.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.430412+0000 mon.smithi099 (mon.0) 358 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:26.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.430590+0000 mon.smithi099 (mon.0) 359 : audit [INF] from='osd.1 [v2:172.21.15.99:6802/3831341837,v1:172.21.15.99:6803/3831341837]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]: dispatch 2024-01-27T23:29:26.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.430882+0000 mon.smithi099 (mon.0) 360 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:26.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.431055+0000 mon.smithi099 (mon.0) 361 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:26.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.431211+0000 mon.smithi099 (mon.0) 362 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:26.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.438932+0000 mon.smithi099 (mon.0) 363 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:26.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.439365+0000 mon.smithi099 (mon.0) 364 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:26.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:26 smithi142 bash[20347]: audit 2024-01-27T23:29:25.439875+0000 mon.smithi099 (mon.0) 365 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:26.922 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: cluster 2024-01-27T23:29:25.162465+0000 mgr.smithi099.hzjdah (mgr.14182) 61 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-01-27T23:29:26.922 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.429321+0000 mon.smithi099 (mon.0) 354 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-01-27T23:29:26.922 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.429396+0000 mon.smithi099 (mon.0) 355 : audit [INF] from='osd.1 [v2:172.21.15.99:6802/3831341837,v1:172.21.15.99:6803/3831341837]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-01-27T23:29:26.922 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: cluster 2024-01-27T23:29:25.429455+0000 mon.smithi099 (mon.0) 356 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-01-27T23:29:26.922 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.430023+0000 mon.smithi099 (mon.0) 357 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:26.922 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.430412+0000 mon.smithi099 (mon.0) 358 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:26.923 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.430590+0000 mon.smithi099 (mon.0) 359 : audit [INF] from='osd.1 [v2:172.21.15.99:6802/3831341837,v1:172.21.15.99:6803/3831341837]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]: dispatch 2024-01-27T23:29:26.923 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.430882+0000 mon.smithi099 (mon.0) 360 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:26.923 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.431055+0000 mon.smithi099 (mon.0) 361 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:26.923 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.431211+0000 mon.smithi099 (mon.0) 362 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:26.923 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.438932+0000 mon.smithi099 (mon.0) 363 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:26.923 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.439365+0000 mon.smithi099 (mon.0) 364 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:26.923 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:26 smithi099 bash[16328]: audit 2024-01-27T23:29:25.439875+0000 mon.smithi099 (mon.0) 365 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:27.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: cluster 2024-01-27T23:29:24.560794+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:27.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: cluster 2024-01-27T23:29:24.560910+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:27.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: audit 2024-01-27T23:29:26.432067+0000 mon.smithi099 (mon.0) 366 : audit [INF] from='osd.1 [v2:172.21.15.99:6802/3831341837,v1:172.21.15.99:6803/3831341837]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]': finished 2024-01-27T23:29:27.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: cluster 2024-01-27T23:29:26.432202+0000 mon.smithi099 (mon.0) 367 : cluster [INF] osd.2 [v2:172.21.15.142:6808/2474935723,v1:172.21.15.142:6809/2474935723] boot 2024-01-27T23:29:27.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: cluster 2024-01-27T23:29:26.432271+0000 mon.smithi099 (mon.0) 368 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-01-27T23:29:27.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: audit 2024-01-27T23:29:26.432481+0000 mon.smithi099 (mon.0) 369 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:27.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: audit 2024-01-27T23:29:26.433597+0000 mon.smithi099 (mon.0) 370 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:27.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: audit 2024-01-27T23:29:26.434442+0000 mon.smithi099 (mon.0) 371 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:27.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: audit 2024-01-27T23:29:26.434952+0000 mon.smithi099 (mon.0) 372 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:27.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: audit 2024-01-27T23:29:26.435346+0000 mon.smithi099 (mon.0) 373 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:27.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: audit 2024-01-27T23:29:26.435723+0000 mon.smithi099 (mon.0) 374 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:27.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: audit 2024-01-27T23:29:26.442910+0000 mon.smithi099 (mon.0) 375 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:27.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: audit 2024-01-27T23:29:26.443396+0000 mon.smithi099 (mon.0) 376 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:27.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:27 smithi142 bash[20347]: audit 2024-01-27T23:29:26.449267+0000 mon.smithi099 (mon.0) 377 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:27.813 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: cluster 2024-01-27T23:29:24.560794+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: cluster 2024-01-27T23:29:24.560910+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: audit 2024-01-27T23:29:26.432067+0000 mon.smithi099 (mon.0) 366 : audit [INF] from='osd.1 [v2:172.21.15.99:6802/3831341837,v1:172.21.15.99:6803/3831341837]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]': finished 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: cluster 2024-01-27T23:29:26.432202+0000 mon.smithi099 (mon.0) 367 : cluster [INF] osd.2 [v2:172.21.15.142:6808/2474935723,v1:172.21.15.142:6809/2474935723] boot 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: cluster 2024-01-27T23:29:26.432271+0000 mon.smithi099 (mon.0) 368 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: audit 2024-01-27T23:29:26.432481+0000 mon.smithi099 (mon.0) 369 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: audit 2024-01-27T23:29:26.433597+0000 mon.smithi099 (mon.0) 370 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: audit 2024-01-27T23:29:26.434442+0000 mon.smithi099 (mon.0) 371 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: audit 2024-01-27T23:29:26.434952+0000 mon.smithi099 (mon.0) 372 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: audit 2024-01-27T23:29:26.435346+0000 mon.smithi099 (mon.0) 373 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: audit 2024-01-27T23:29:26.435723+0000 mon.smithi099 (mon.0) 374 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: audit 2024-01-27T23:29:26.442910+0000 mon.smithi099 (mon.0) 375 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: audit 2024-01-27T23:29:26.443396+0000 mon.smithi099 (mon.0) 376 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:27.814 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:27 smithi099 bash[16328]: audit 2024-01-27T23:29:26.449267+0000 mon.smithi099 (mon.0) 377 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:28.295 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:29:28.628 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: cluster 2024-01-27T23:29:25.842098+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:28.628 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: cluster 2024-01-27T23:29:25.842211+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:28.628 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: cluster 2024-01-27T23:29:27.162992+0000 mgr.smithi099.hzjdah (mgr.14182) 62 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-01-27T23:29:28.628 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: audit 2024-01-27T23:29:27.438285+0000 mon.smithi099 (mon.0) 378 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:28.628 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: cluster 2024-01-27T23:29:27.450985+0000 mon.smithi099 (mon.0) 379 : cluster [INF] osd.1 [v2:172.21.15.99:6802/3831341837,v1:172.21.15.99:6803/3831341837] boot 2024-01-27T23:29:28.628 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: cluster 2024-01-27T23:29:27.451025+0000 mon.smithi099 (mon.0) 380 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-01-27T23:29:28.629 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: audit 2024-01-27T23:29:27.451533+0000 mon.smithi099 (mon.0) 381 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:28.629 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: audit 2024-01-27T23:29:27.451912+0000 mon.smithi099 (mon.0) 382 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:28.629 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: audit 2024-01-27T23:29:27.452275+0000 mon.smithi099 (mon.0) 383 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:28.629 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: audit 2024-01-27T23:29:27.452610+0000 mon.smithi099 (mon.0) 384 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:28.629 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: audit 2024-01-27T23:29:27.452933+0000 mon.smithi099 (mon.0) 385 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:28.629 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: audit 2024-01-27T23:29:27.453237+0000 mon.smithi099 (mon.0) 386 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:28.629 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: audit 2024-01-27T23:29:27.453626+0000 mon.smithi099 (mon.0) 387 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-01-27T23:29:28.629 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:28 smithi099 bash[16328]: audit 2024-01-27T23:29:28.303955+0000 mon.smithi099 (mon.0) 388 : audit [DBG] from='client.? 172.21.15.99:0/2515604062' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:28.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: cluster 2024-01-27T23:29:25.842098+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:28.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: cluster 2024-01-27T23:29:25.842211+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:28.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: cluster 2024-01-27T23:29:27.162992+0000 mgr.smithi099.hzjdah (mgr.14182) 62 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-01-27T23:29:28.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: audit 2024-01-27T23:29:27.438285+0000 mon.smithi099 (mon.0) 378 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:28.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: cluster 2024-01-27T23:29:27.450985+0000 mon.smithi099 (mon.0) 379 : cluster [INF] osd.1 [v2:172.21.15.99:6802/3831341837,v1:172.21.15.99:6803/3831341837] boot 2024-01-27T23:29:28.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: cluster 2024-01-27T23:29:27.451025+0000 mon.smithi099 (mon.0) 380 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-01-27T23:29:28.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: audit 2024-01-27T23:29:27.451533+0000 mon.smithi099 (mon.0) 381 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:29:28.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: audit 2024-01-27T23:29:27.451912+0000 mon.smithi099 (mon.0) 382 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:28.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: audit 2024-01-27T23:29:27.452275+0000 mon.smithi099 (mon.0) 383 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:28.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: audit 2024-01-27T23:29:27.452610+0000 mon.smithi099 (mon.0) 384 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:28.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: audit 2024-01-27T23:29:27.452933+0000 mon.smithi099 (mon.0) 385 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:28.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: audit 2024-01-27T23:29:27.453237+0000 mon.smithi099 (mon.0) 386 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:28.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: audit 2024-01-27T23:29:27.453626+0000 mon.smithi099 (mon.0) 387 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-01-27T23:29:28.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:28 smithi142 bash[20347]: audit 2024-01-27T23:29:28.303955+0000 mon.smithi099 (mon.0) 388 : audit [DBG] from='client.? 172.21.15.99:0/2515604062' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:29.016 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":21,"num_osds":8,"num_up_osds":3,"osd_up_since":1706398167,"num_in_osds":8,"osd_in_since":1706398136,"num_remapped_pgs":0} 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:28.451795+0000 mon.smithi099 (mon.0) 389 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: cluster 2024-01-27T23:29:28.451861+0000 mon.smithi099 (mon.0) 390 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:28.452034+0000 mon.smithi099 (mon.0) 391 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:28.452408+0000 mon.smithi099 (mon.0) 392 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:28.452602+0000 mon.smithi099 (mon.0) 393 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:28.452758+0000 mon.smithi099 (mon.0) 394 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:28.452977+0000 mon.smithi099 (mon.0) 395 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:28.453696+0000 mon.smithi099 (mon.0) 396 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:28.933756+0000 mon.smithi099 (mon.0) 397 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:28.934654+0000 mon.smithi099 (mon.0) 398 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-01-27T23:29:29.678 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:28.935391+0000 mon.smithi099 (mon.0) 399 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:29.679 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:29.377193+0000 mon.smithi142 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.142:6816/3262620398,v1:172.21.15.142:6817/3262620398]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-27T23:29:29.679 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:29 smithi142 bash[20347]: audit 2024-01-27T23:29:29.378141+0000 mon.smithi099 (mon.0) 400 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:28.451795+0000 mon.smithi099 (mon.0) 389 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: cluster 2024-01-27T23:29:28.451861+0000 mon.smithi099 (mon.0) 390 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:28.452034+0000 mon.smithi099 (mon.0) 391 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:28.452408+0000 mon.smithi099 (mon.0) 392 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:28.452602+0000 mon.smithi099 (mon.0) 393 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:28.452758+0000 mon.smithi099 (mon.0) 394 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:28.452977+0000 mon.smithi099 (mon.0) 395 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:28.453696+0000 mon.smithi099 (mon.0) 396 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:28.933756+0000 mon.smithi099 (mon.0) 397 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:28.934654+0000 mon.smithi099 (mon.0) 398 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-01-27T23:29:29.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:28.935391+0000 mon.smithi099 (mon.0) 399 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:29.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:29.377193+0000 mon.smithi142 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.142:6816/3262620398,v1:172.21.15.142:6817/3262620398]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-27T23:29:29.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:29 smithi099 bash[16328]: audit 2024-01-27T23:29:29.378141+0000 mon.smithi099 (mon.0) 400 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-27T23:29:30.017 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:29:30.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: cephadm 2024-01-27T23:29:28.936138+0000 mgr.smithi099.hzjdah (mgr.14182) 63 : cephadm [INF] Deploying daemon osd.7 on smithi099 2024-01-27T23:29:30.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: cluster 2024-01-27T23:29:29.163460+0000 mgr.smithi099.hzjdah (mgr.14182) 64 : cluster [DBG] pgmap v58: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-27T23:29:30.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: audit 2024-01-27T23:29:29.457114+0000 mon.smithi099 (mon.0) 401 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-01-27T23:29:30.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: audit 2024-01-27T23:29:29.457265+0000 mon.smithi099 (mon.0) 402 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-01-27T23:29:30.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: cluster 2024-01-27T23:29:29.457487+0000 mon.smithi099 (mon.0) 403 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-01-27T23:29:30.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: audit 2024-01-27T23:29:29.458045+0000 mon.smithi099 (mon.0) 404 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:30.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: audit 2024-01-27T23:29:29.458442+0000 mon.smithi099 (mon.0) 405 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:30.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: audit 2024-01-27T23:29:29.458670+0000 mon.smithi099 (mon.0) 406 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:30.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: audit 2024-01-27T23:29:29.458979+0000 mon.smithi099 (mon.0) 407 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:30.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: audit 2024-01-27T23:29:29.459216+0000 mon.smithi099 (mon.0) 408 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:30.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: audit 2024-01-27T23:29:29.459508+0000 mon.smithi142 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.142:6816/3262620398,v1:172.21.15.142:6817/3262620398]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:30.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:30 smithi142 bash[20347]: audit 2024-01-27T23:29:29.464454+0000 mon.smithi099 (mon.0) 409 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: cephadm 2024-01-27T23:29:28.936138+0000 mgr.smithi099.hzjdah (mgr.14182) 63 : cephadm [INF] Deploying daemon osd.7 on smithi099 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: cluster 2024-01-27T23:29:29.163460+0000 mgr.smithi099.hzjdah (mgr.14182) 64 : cluster [DBG] pgmap v58: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: audit 2024-01-27T23:29:29.457114+0000 mon.smithi099 (mon.0) 401 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: audit 2024-01-27T23:29:29.457265+0000 mon.smithi099 (mon.0) 402 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: cluster 2024-01-27T23:29:29.457487+0000 mon.smithi099 (mon.0) 403 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: audit 2024-01-27T23:29:29.458045+0000 mon.smithi099 (mon.0) 404 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: audit 2024-01-27T23:29:29.458442+0000 mon.smithi099 (mon.0) 405 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: audit 2024-01-27T23:29:29.458670+0000 mon.smithi099 (mon.0) 406 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: audit 2024-01-27T23:29:29.458979+0000 mon.smithi099 (mon.0) 407 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: audit 2024-01-27T23:29:29.459216+0000 mon.smithi099 (mon.0) 408 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:30.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: audit 2024-01-27T23:29:29.459508+0000 mon.smithi142 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.142:6816/3262620398,v1:172.21.15.142:6817/3262620398]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:30.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:30 smithi099 bash[16328]: audit 2024-01-27T23:29:29.464454+0000 mon.smithi099 (mon.0) 409 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:31.743 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:31 smithi099 bash[16328]: audit 2024-01-27T23:29:30.476104+0000 mon.smithi099 (mon.0) 410 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-01-27T23:29:31.744 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:31 smithi099 bash[16328]: cluster 2024-01-27T23:29:30.476337+0000 mon.smithi099 (mon.0) 411 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-01-27T23:29:31.744 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:31 smithi099 bash[16328]: audit 2024-01-27T23:29:30.476538+0000 mon.smithi099 (mon.0) 412 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:31.744 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:31 smithi099 bash[16328]: audit 2024-01-27T23:29:30.476831+0000 mon.smithi099 (mon.0) 413 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:31.744 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:31 smithi099 bash[16328]: audit 2024-01-27T23:29:30.477042+0000 mon.smithi099 (mon.0) 414 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:31.744 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:31 smithi099 bash[16328]: audit 2024-01-27T23:29:30.477245+0000 mon.smithi099 (mon.0) 415 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:31.744 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:31 smithi099 bash[16328]: audit 2024-01-27T23:29:30.477531+0000 mon.smithi099 (mon.0) 416 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:31.744 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:31 smithi099 bash[16328]: audit 2024-01-27T23:29:30.484189+0000 mon.smithi099 (mon.0) 417 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:31.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:31 smithi142 bash[20347]: audit 2024-01-27T23:29:30.476104+0000 mon.smithi099 (mon.0) 410 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-01-27T23:29:31.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:31 smithi142 bash[20347]: cluster 2024-01-27T23:29:30.476337+0000 mon.smithi099 (mon.0) 411 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-01-27T23:29:31.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:31 smithi142 bash[20347]: audit 2024-01-27T23:29:30.476538+0000 mon.smithi099 (mon.0) 412 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:31.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:31 smithi142 bash[20347]: audit 2024-01-27T23:29:30.476831+0000 mon.smithi099 (mon.0) 413 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:31.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:31 smithi142 bash[20347]: audit 2024-01-27T23:29:30.477042+0000 mon.smithi099 (mon.0) 414 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:31.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:31 smithi142 bash[20347]: audit 2024-01-27T23:29:30.477245+0000 mon.smithi099 (mon.0) 415 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:31.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:31 smithi142 bash[20347]: audit 2024-01-27T23:29:30.477531+0000 mon.smithi099 (mon.0) 416 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:31.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:31 smithi142 bash[20347]: audit 2024-01-27T23:29:30.484189+0000 mon.smithi099 (mon.0) 417 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:32.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: cluster 2024-01-27T23:29:30.398605+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:32.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: cluster 2024-01-27T23:29:30.398698+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:32.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: cluster 2024-01-27T23:29:31.163993+0000 mgr.smithi099.hzjdah (mgr.14182) 65 : cluster [DBG] pgmap v61: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-27T23:29:32.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: cluster 2024-01-27T23:29:31.485151+0000 mon.smithi099 (mon.0) 418 : cluster [INF] osd.4 [v2:172.21.15.142:6816/3262620398,v1:172.21.15.142:6817/3262620398] boot 2024-01-27T23:29:32.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: cluster 2024-01-27T23:29:31.485225+0000 mon.smithi099 (mon.0) 419 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-01-27T23:29:32.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: audit 2024-01-27T23:29:31.485393+0000 mon.smithi099 (mon.0) 420 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:32.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: audit 2024-01-27T23:29:31.485831+0000 mon.smithi099 (mon.0) 421 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:32.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: audit 2024-01-27T23:29:31.486066+0000 mon.smithi099 (mon.0) 422 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:32.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: audit 2024-01-27T23:29:31.486270+0000 mon.smithi099 (mon.0) 423 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:32.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: audit 2024-01-27T23:29:31.486487+0000 mon.smithi099 (mon.0) 424 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:32.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:32 smithi142 bash[20347]: audit 2024-01-27T23:29:31.755564+0000 mon.smithi099 (mon.0) 425 : audit [INF] from='osd.3 [v2:172.21.15.99:6810/743344191,v1:172.21.15.99:6811/743344191]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: cluster 2024-01-27T23:29:30.398605+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: cluster 2024-01-27T23:29:30.398698+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: cluster 2024-01-27T23:29:31.163993+0000 mgr.smithi099.hzjdah (mgr.14182) 65 : cluster [DBG] pgmap v61: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: cluster 2024-01-27T23:29:31.485151+0000 mon.smithi099 (mon.0) 418 : cluster [INF] osd.4 [v2:172.21.15.142:6816/3262620398,v1:172.21.15.142:6817/3262620398] boot 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: cluster 2024-01-27T23:29:31.485225+0000 mon.smithi099 (mon.0) 419 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: audit 2024-01-27T23:29:31.485393+0000 mon.smithi099 (mon.0) 420 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: audit 2024-01-27T23:29:31.485831+0000 mon.smithi099 (mon.0) 421 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: audit 2024-01-27T23:29:31.486066+0000 mon.smithi099 (mon.0) 422 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: audit 2024-01-27T23:29:31.486270+0000 mon.smithi099 (mon.0) 423 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: audit 2024-01-27T23:29:31.486487+0000 mon.smithi099 (mon.0) 424 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:32.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:32 smithi099 bash[16328]: audit 2024-01-27T23:29:31.755564+0000 mon.smithi099 (mon.0) 425 : audit [INF] from='osd.3 [v2:172.21.15.99:6810/743344191,v1:172.21.15.99:6811/743344191]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-01-27T23:29:33.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:33 smithi142 bash[20347]: audit 2024-01-27T23:29:32.494001+0000 mon.smithi099 (mon.0) 426 : audit [INF] from='osd.3 [v2:172.21.15.99:6810/743344191,v1:172.21.15.99:6811/743344191]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-01-27T23:29:33.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:33 smithi142 bash[20347]: cluster 2024-01-27T23:29:32.494134+0000 mon.smithi099 (mon.0) 427 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-01-27T23:29:33.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:33 smithi142 bash[20347]: audit 2024-01-27T23:29:32.494352+0000 mon.smithi099 (mon.0) 428 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:33.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:33 smithi142 bash[20347]: audit 2024-01-27T23:29:32.494773+0000 mon.smithi099 (mon.0) 429 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:33.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:33 smithi142 bash[20347]: audit 2024-01-27T23:29:32.495062+0000 mon.smithi099 (mon.0) 430 : audit [INF] from='osd.3 [v2:172.21.15.99:6810/743344191,v1:172.21.15.99:6811/743344191]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]: dispatch 2024-01-27T23:29:33.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:33 smithi142 bash[20347]: audit 2024-01-27T23:29:32.495445+0000 mon.smithi099 (mon.0) 431 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:33.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:33 smithi142 bash[20347]: audit 2024-01-27T23:29:32.495743+0000 mon.smithi099 (mon.0) 432 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:33.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:33 smithi142 bash[20347]: audit 2024-01-27T23:29:33.222066+0000 mon.smithi142 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.142:6824/2303565403,v1:172.21.15.142:6825/2303565403]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-27T23:29:33.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:33 smithi142 bash[20347]: audit 2024-01-27T23:29:33.223038+0000 mon.smithi099 (mon.0) 433 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-27T23:29:33.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:33 smithi099 bash[16328]: audit 2024-01-27T23:29:32.494001+0000 mon.smithi099 (mon.0) 426 : audit [INF] from='osd.3 [v2:172.21.15.99:6810/743344191,v1:172.21.15.99:6811/743344191]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-01-27T23:29:33.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:33 smithi099 bash[16328]: cluster 2024-01-27T23:29:32.494134+0000 mon.smithi099 (mon.0) 427 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-01-27T23:29:33.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:33 smithi099 bash[16328]: audit 2024-01-27T23:29:32.494352+0000 mon.smithi099 (mon.0) 428 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:33.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:33 smithi099 bash[16328]: audit 2024-01-27T23:29:32.494773+0000 mon.smithi099 (mon.0) 429 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:33.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:33 smithi099 bash[16328]: audit 2024-01-27T23:29:32.495062+0000 mon.smithi099 (mon.0) 430 : audit [INF] from='osd.3 [v2:172.21.15.99:6810/743344191,v1:172.21.15.99:6811/743344191]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]: dispatch 2024-01-27T23:29:33.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:33 smithi099 bash[16328]: audit 2024-01-27T23:29:32.495445+0000 mon.smithi099 (mon.0) 431 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:33.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:33 smithi099 bash[16328]: audit 2024-01-27T23:29:32.495743+0000 mon.smithi099 (mon.0) 432 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:33.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:33 smithi099 bash[16328]: audit 2024-01-27T23:29:33.222066+0000 mon.smithi142 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.142:6824/2303565403,v1:172.21.15.142:6825/2303565403]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-27T23:29:33.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:33 smithi099 bash[16328]: audit 2024-01-27T23:29:33.223038+0000 mon.smithi099 (mon.0) 433 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-27T23:29:34.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: cluster 2024-01-27T23:29:33.164488+0000 mgr.smithi099.hzjdah (mgr.14182) 66 : cluster [DBG] pgmap v64: 1 pgs: 1 peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-01-27T23:29:34.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:33.497878+0000 mon.smithi099 (mon.0) 434 : audit [INF] from='osd.3 [v2:172.21.15.99:6810/743344191,v1:172.21.15.99:6811/743344191]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]': finished 2024-01-27T23:29:34.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:33.497989+0000 mon.smithi099 (mon.0) 435 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: cluster 2024-01-27T23:29:33.498116+0000 mon.smithi099 (mon.0) 436 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:33.498788+0000 mon.smithi099 (mon.0) 437 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:33.499149+0000 mon.smithi099 (mon.0) 438 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:33.499845+0000 mon.smithi099 (mon.0) 439 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:33.500112+0000 mon.smithi099 (mon.0) 440 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:33.501254+0000 mon.smithi142 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.142:6824/2303565403,v1:172.21.15.142:6825/2303565403]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:33.507457+0000 mon.smithi099 (mon.0) 441 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:33.508055+0000 mon.smithi099 (mon.0) 442 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:34.500228+0000 mon.smithi099 (mon.0) 443 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: cluster 2024-01-27T23:29:34.500474+0000 mon.smithi099 (mon.0) 444 : cluster [INF] osd.3 [v2:172.21.15.99:6810/743344191,v1:172.21.15.99:6811/743344191] boot 2024-01-27T23:29:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: cluster 2024-01-27T23:29:34.500524+0000 mon.smithi099 (mon.0) 445 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-01-27T23:29:34.798 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:34.500920+0000 mon.smithi099 (mon.0) 446 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:34.798 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:34.501161+0000 mon.smithi099 (mon.0) 447 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:34.798 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:34.501488+0000 mon.smithi099 (mon.0) 448 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:34.798 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:34 smithi142 bash[20347]: audit 2024-01-27T23:29:34.501706+0000 mon.smithi099 (mon.0) 449 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:34.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: cluster 2024-01-27T23:29:33.164488+0000 mgr.smithi099.hzjdah (mgr.14182) 66 : cluster [DBG] pgmap v64: 1 pgs: 1 peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-01-27T23:29:34.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:33.497878+0000 mon.smithi099 (mon.0) 434 : audit [INF] from='osd.3 [v2:172.21.15.99:6810/743344191,v1:172.21.15.99:6811/743344191]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]': finished 2024-01-27T23:29:34.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:33.497989+0000 mon.smithi099 (mon.0) 435 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-01-27T23:29:34.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: cluster 2024-01-27T23:29:33.498116+0000 mon.smithi099 (mon.0) 436 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-01-27T23:29:34.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:33.498788+0000 mon.smithi099 (mon.0) 437 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:34.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:33.499149+0000 mon.smithi099 (mon.0) 438 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:34.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:33.499845+0000 mon.smithi099 (mon.0) 439 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:34.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:33.500112+0000 mon.smithi099 (mon.0) 440 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:34.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:33.501254+0000 mon.smithi142 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.142:6824/2303565403,v1:172.21.15.142:6825/2303565403]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:33.507457+0000 mon.smithi099 (mon.0) 441 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:33.508055+0000 mon.smithi099 (mon.0) 442 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-01-27T23:29:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:34.500228+0000 mon.smithi099 (mon.0) 443 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-01-27T23:29:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: cluster 2024-01-27T23:29:34.500474+0000 mon.smithi099 (mon.0) 444 : cluster [INF] osd.3 [v2:172.21.15.99:6810/743344191,v1:172.21.15.99:6811/743344191] boot 2024-01-27T23:29:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: cluster 2024-01-27T23:29:34.500524+0000 mon.smithi099 (mon.0) 445 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-01-27T23:29:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:34.500920+0000 mon.smithi099 (mon.0) 446 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:29:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:34.501161+0000 mon.smithi099 (mon.0) 447 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:34.501488+0000 mon.smithi099 (mon.0) 448 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:34 smithi099 bash[16328]: audit 2024-01-27T23:29:34.501706+0000 mon.smithi099 (mon.0) 449 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:35.305 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:29:35.658 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:35 smithi099 bash[16328]: cluster 2024-01-27T23:29:32.717491+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:35.658 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:35 smithi099 bash[16328]: cluster 2024-01-27T23:29:32.717584+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:35.658 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:35 smithi099 bash[16328]: audit 2024-01-27T23:29:34.510892+0000 mon.smithi099 (mon.0) 450 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:35.658 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:35 smithi099 bash[16328]: audit 2024-01-27T23:29:35.313560+0000 mon.smithi099 (mon.0) 451 : audit [DBG] from='client.? 172.21.15.99:0/2388557934' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:35.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:35 smithi142 bash[20347]: cluster 2024-01-27T23:29:32.717491+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:35.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:35 smithi142 bash[20347]: cluster 2024-01-27T23:29:32.717584+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:35.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:35 smithi142 bash[20347]: audit 2024-01-27T23:29:34.510892+0000 mon.smithi099 (mon.0) 450 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:35.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:35 smithi142 bash[20347]: audit 2024-01-27T23:29:35.313560+0000 mon.smithi099 (mon.0) 451 : audit [DBG] from='client.? 172.21.15.99:0/2388557934' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:36.136 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":28,"num_osds":8,"num_up_osds":5,"osd_up_since":1706398174,"num_in_osds":8,"osd_in_since":1706398136,"num_remapped_pgs":1} 2024-01-27T23:29:36.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: cluster 2024-01-27T23:29:34.227951+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:36.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: cluster 2024-01-27T23:29:34.228044+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:36.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: cluster 2024-01-27T23:29:35.164909+0000 mgr.smithi099.hzjdah (mgr.14182) 67 : cluster [DBG] pgmap v67: 1 pgs: 1 peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-01-27T23:29:36.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: cluster 2024-01-27T23:29:35.504782+0000 mon.smithi099 (mon.0) 452 : cluster [INF] osd.6 [v2:172.21.15.142:6824/2303565403,v1:172.21.15.142:6825/2303565403] boot 2024-01-27T23:29:36.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: cluster 2024-01-27T23:29:35.504955+0000 mon.smithi099 (mon.0) 453 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2024-01-27T23:29:36.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: audit 2024-01-27T23:29:35.505303+0000 mon.smithi099 (mon.0) 454 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:36.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: audit 2024-01-27T23:29:35.507171+0000 mon.smithi099 (mon.0) 455 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:36.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: audit 2024-01-27T23:29:35.507922+0000 mon.smithi099 (mon.0) 456 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:36.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: audit 2024-01-27T23:29:36.128719+0000 mon.smithi099 (mon.0) 457 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:36.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: audit 2024-01-27T23:29:36.246751+0000 mon.smithi099 (mon.0) 458 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:36.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: cluster 2024-01-27T23:29:36.505171+0000 mon.smithi099 (mon.0) 459 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-01-27T23:29:36.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: audit 2024-01-27T23:29:36.505479+0000 mon.smithi099 (mon.0) 460 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:36.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:36 smithi142 bash[20347]: audit 2024-01-27T23:29:36.506136+0000 mon.smithi099 (mon.0) 461 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:36.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: cluster 2024-01-27T23:29:34.227951+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:36.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: cluster 2024-01-27T23:29:34.228044+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:36.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: cluster 2024-01-27T23:29:35.164909+0000 mgr.smithi099.hzjdah (mgr.14182) 67 : cluster [DBG] pgmap v67: 1 pgs: 1 peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-01-27T23:29:36.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: cluster 2024-01-27T23:29:35.504782+0000 mon.smithi099 (mon.0) 452 : cluster [INF] osd.6 [v2:172.21.15.142:6824/2303565403,v1:172.21.15.142:6825/2303565403] boot 2024-01-27T23:29:36.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: cluster 2024-01-27T23:29:35.504955+0000 mon.smithi099 (mon.0) 453 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2024-01-27T23:29:36.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: audit 2024-01-27T23:29:35.505303+0000 mon.smithi099 (mon.0) 454 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:36.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: audit 2024-01-27T23:29:35.507171+0000 mon.smithi099 (mon.0) 455 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:29:36.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: audit 2024-01-27T23:29:35.507922+0000 mon.smithi099 (mon.0) 456 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:36.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: audit 2024-01-27T23:29:36.128719+0000 mon.smithi099 (mon.0) 457 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:36.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: audit 2024-01-27T23:29:36.246751+0000 mon.smithi099 (mon.0) 458 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:36.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: cluster 2024-01-27T23:29:36.505171+0000 mon.smithi099 (mon.0) 459 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-01-27T23:29:36.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: audit 2024-01-27T23:29:36.505479+0000 mon.smithi099 (mon.0) 460 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:36.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:36 smithi099 bash[16328]: audit 2024-01-27T23:29:36.506136+0000 mon.smithi099 (mon.0) 461 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:37.137 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:29:38.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:38 smithi142 bash[20347]: cluster 2024-01-27T23:29:37.165653+0000 mgr.smithi099.hzjdah (mgr.14182) 68 : cluster [DBG] pgmap v70: 1 pgs: 1 peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-27T23:29:38.803 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:38 smithi099 bash[16328]: cluster 2024-01-27T23:29:37.165653+0000 mgr.smithi099.hzjdah (mgr.14182) 68 : cluster [DBG] pgmap v70: 1 pgs: 1 peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-27T23:29:39.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:39 smithi142 bash[20347]: audit 2024-01-27T23:29:38.647929+0000 mon.smithi099 (mon.0) 462 : audit [INF] from='osd.5 [v2:172.21.15.99:6818/3033877278,v1:172.21.15.99:6819/3033877278]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-01-27T23:29:39.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:39 smithi099 bash[16328]: audit 2024-01-27T23:29:38.647929+0000 mon.smithi099 (mon.0) 462 : audit [INF] from='osd.5 [v2:172.21.15.99:6818/3033877278,v1:172.21.15.99:6819/3033877278]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-01-27T23:29:40.693 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:40 smithi099 bash[16328]: cluster 2024-01-27T23:29:39.166322+0000 mgr.smithi099.hzjdah (mgr.14182) 69 : cluster [DBG] pgmap v71: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-27T23:29:40.693 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:40 smithi099 bash[16328]: audit 2024-01-27T23:29:39.532403+0000 mon.smithi099 (mon.0) 463 : audit [INF] from='osd.5 [v2:172.21.15.99:6818/3033877278,v1:172.21.15.99:6819/3033877278]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-01-27T23:29:40.693 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:40 smithi099 bash[16328]: cluster 2024-01-27T23:29:39.532528+0000 mon.smithi099 (mon.0) 464 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-01-27T23:29:40.693 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:40 smithi099 bash[16328]: audit 2024-01-27T23:29:39.532783+0000 mon.smithi099 (mon.0) 465 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:40.694 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:40 smithi099 bash[16328]: audit 2024-01-27T23:29:39.533067+0000 mon.smithi099 (mon.0) 466 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:40.694 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:40 smithi099 bash[16328]: audit 2024-01-27T23:29:39.533391+0000 mon.smithi099 (mon.0) 467 : audit [INF] from='osd.5 [v2:172.21.15.99:6818/3033877278,v1:172.21.15.99:6819/3033877278]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]: dispatch 2024-01-27T23:29:40.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:40 smithi142 bash[20347]: cluster 2024-01-27T23:29:39.166322+0000 mgr.smithi099.hzjdah (mgr.14182) 69 : cluster [DBG] pgmap v71: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-27T23:29:40.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:40 smithi142 bash[20347]: audit 2024-01-27T23:29:39.532403+0000 mon.smithi099 (mon.0) 463 : audit [INF] from='osd.5 [v2:172.21.15.99:6818/3033877278,v1:172.21.15.99:6819/3033877278]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-01-27T23:29:40.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:40 smithi142 bash[20347]: cluster 2024-01-27T23:29:39.532528+0000 mon.smithi099 (mon.0) 464 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-01-27T23:29:40.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:40 smithi142 bash[20347]: audit 2024-01-27T23:29:39.532783+0000 mon.smithi099 (mon.0) 465 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:40.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:40 smithi142 bash[20347]: audit 2024-01-27T23:29:39.533067+0000 mon.smithi099 (mon.0) 466 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:40.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:40 smithi142 bash[20347]: audit 2024-01-27T23:29:39.533391+0000 mon.smithi099 (mon.0) 467 : audit [INF] from='osd.5 [v2:172.21.15.99:6818/3033877278,v1:172.21.15.99:6819/3033877278]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]: dispatch 2024-01-27T23:29:41.488 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:29:41.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:41 smithi142 bash[20347]: audit 2024-01-27T23:29:40.538300+0000 mon.smithi099 (mon.0) 468 : audit [INF] from='osd.5 [v2:172.21.15.99:6818/3033877278,v1:172.21.15.99:6819/3033877278]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]': finished 2024-01-27T23:29:41.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:41 smithi142 bash[20347]: cluster 2024-01-27T23:29:40.538472+0000 mon.smithi099 (mon.0) 469 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-01-27T23:29:41.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:41 smithi142 bash[20347]: audit 2024-01-27T23:29:40.539464+0000 mon.smithi099 (mon.0) 470 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:41.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:41 smithi142 bash[20347]: audit 2024-01-27T23:29:40.540442+0000 mon.smithi099 (mon.0) 471 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:41.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:41 smithi142 bash[20347]: audit 2024-01-27T23:29:40.547811+0000 mon.smithi099 (mon.0) 472 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:41.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:41 smithi142 bash[20347]: audit 2024-01-27T23:29:41.495815+0000 mon.smithi099 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.99:0/3385494876' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:41.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:41 smithi099 bash[16328]: audit 2024-01-27T23:29:40.538300+0000 mon.smithi099 (mon.0) 468 : audit [INF] from='osd.5 [v2:172.21.15.99:6818/3033877278,v1:172.21.15.99:6819/3033877278]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]': finished 2024-01-27T23:29:41.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:41 smithi099 bash[16328]: cluster 2024-01-27T23:29:40.538472+0000 mon.smithi099 (mon.0) 469 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-01-27T23:29:41.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:41 smithi099 bash[16328]: audit 2024-01-27T23:29:40.539464+0000 mon.smithi099 (mon.0) 470 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:41.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:41 smithi099 bash[16328]: audit 2024-01-27T23:29:40.540442+0000 mon.smithi099 (mon.0) 471 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:41.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:41 smithi099 bash[16328]: audit 2024-01-27T23:29:40.547811+0000 mon.smithi099 (mon.0) 472 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:41.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:41 smithi099 bash[16328]: audit 2024-01-27T23:29:41.495815+0000 mon.smithi099 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.99:0/3385494876' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:42.174 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":32,"num_osds":8,"num_up_osds":6,"osd_up_since":1706398175,"num_in_osds":8,"osd_in_since":1706398136,"num_remapped_pgs":0} 2024-01-27T23:29:42.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:42 smithi142 bash[20347]: cluster 2024-01-27T23:29:39.657461+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:42.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:42 smithi142 bash[20347]: cluster 2024-01-27T23:29:39.657545+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:42.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:42 smithi142 bash[20347]: cluster 2024-01-27T23:29:41.166866+0000 mgr.smithi099.hzjdah (mgr.14182) 70 : cluster [DBG] pgmap v74: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-27T23:29:42.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:42 smithi142 bash[20347]: audit 2024-01-27T23:29:41.550777+0000 mon.smithi099 (mon.0) 474 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:42.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:42 smithi142 bash[20347]: cluster 2024-01-27T23:29:41.556861+0000 mon.smithi099 (mon.0) 475 : cluster [INF] osd.5 [v2:172.21.15.99:6818/3033877278,v1:172.21.15.99:6819/3033877278] boot 2024-01-27T23:29:42.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:42 smithi142 bash[20347]: cluster 2024-01-27T23:29:41.556931+0000 mon.smithi099 (mon.0) 476 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-01-27T23:29:42.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:42 smithi142 bash[20347]: audit 2024-01-27T23:29:41.557090+0000 mon.smithi099 (mon.0) 477 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:42.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:42 smithi142 bash[20347]: audit 2024-01-27T23:29:41.557378+0000 mon.smithi099 (mon.0) 478 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:42.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:42 smithi099 bash[16328]: cluster 2024-01-27T23:29:39.657461+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:42.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:42 smithi099 bash[16328]: cluster 2024-01-27T23:29:39.657545+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:42.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:42 smithi099 bash[16328]: cluster 2024-01-27T23:29:41.166866+0000 mgr.smithi099.hzjdah (mgr.14182) 70 : cluster [DBG] pgmap v74: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-01-27T23:29:42.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:42 smithi099 bash[16328]: audit 2024-01-27T23:29:41.550777+0000 mon.smithi099 (mon.0) 474 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:42.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:42 smithi099 bash[16328]: cluster 2024-01-27T23:29:41.556861+0000 mon.smithi099 (mon.0) 475 : cluster [INF] osd.5 [v2:172.21.15.99:6818/3033877278,v1:172.21.15.99:6819/3033877278] boot 2024-01-27T23:29:42.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:42 smithi099 bash[16328]: cluster 2024-01-27T23:29:41.556931+0000 mon.smithi099 (mon.0) 476 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-01-27T23:29:42.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:42 smithi099 bash[16328]: audit 2024-01-27T23:29:41.557090+0000 mon.smithi099 (mon.0) 477 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:29:42.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:42 smithi099 bash[16328]: audit 2024-01-27T23:29:41.557378+0000 mon.smithi099 (mon.0) 478 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:43.176 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:29:43.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:43 smithi099 bash[16328]: cluster 2024-01-27T23:29:42.558403+0000 mon.smithi099 (mon.0) 479 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-01-27T23:29:43.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:43 smithi099 bash[16328]: audit 2024-01-27T23:29:42.558664+0000 mon.smithi099 (mon.0) 480 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:44.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:43 smithi142 bash[20347]: cluster 2024-01-27T23:29:42.558403+0000 mon.smithi099 (mon.0) 479 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-01-27T23:29:44.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:43 smithi142 bash[20347]: audit 2024-01-27T23:29:42.558664+0000 mon.smithi099 (mon.0) 480 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:44.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:44 smithi099 bash[16328]: cluster 2024-01-27T23:29:43.167449+0000 mgr.smithi099.hzjdah (mgr.14182) 71 : cluster [DBG] pgmap v77: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-27T23:29:44.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:44 smithi099 bash[16328]: audit 2024-01-27T23:29:44.319783+0000 mon.smithi099 (mon.0) 481 : audit [INF] from='osd.7 [v2:172.21.15.99:6826/1456763956,v1:172.21.15.99:6827/1456763956]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-01-27T23:29:45.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:44 smithi142 bash[20347]: cluster 2024-01-27T23:29:43.167449+0000 mgr.smithi099.hzjdah (mgr.14182) 71 : cluster [DBG] pgmap v77: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-27T23:29:45.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:44 smithi142 bash[20347]: audit 2024-01-27T23:29:44.319783+0000 mon.smithi099 (mon.0) 481 : audit [INF] from='osd.7 [v2:172.21.15.99:6826/1456763956,v1:172.21.15.99:6827/1456763956]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-01-27T23:29:45.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:45 smithi099 bash[16328]: audit 2024-01-27T23:29:44.569365+0000 mon.smithi099 (mon.0) 482 : audit [INF] from='osd.7 [v2:172.21.15.99:6826/1456763956,v1:172.21.15.99:6827/1456763956]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-01-27T23:29:45.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:45 smithi099 bash[16328]: cluster 2024-01-27T23:29:44.569522+0000 mon.smithi099 (mon.0) 483 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-01-27T23:29:45.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:45 smithi099 bash[16328]: audit 2024-01-27T23:29:44.570191+0000 mon.smithi099 (mon.0) 484 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:45.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:45 smithi099 bash[16328]: audit 2024-01-27T23:29:44.570707+0000 mon.smithi099 (mon.0) 485 : audit [INF] from='osd.7 [v2:172.21.15.99:6826/1456763956,v1:172.21.15.99:6827/1456763956]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]: dispatch 2024-01-27T23:29:46.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:45 smithi142 bash[20347]: audit 2024-01-27T23:29:44.569365+0000 mon.smithi099 (mon.0) 482 : audit [INF] from='osd.7 [v2:172.21.15.99:6826/1456763956,v1:172.21.15.99:6827/1456763956]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-01-27T23:29:46.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:45 smithi142 bash[20347]: cluster 2024-01-27T23:29:44.569522+0000 mon.smithi099 (mon.0) 483 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-01-27T23:29:46.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:45 smithi142 bash[20347]: audit 2024-01-27T23:29:44.570191+0000 mon.smithi099 (mon.0) 484 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:46.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:45 smithi142 bash[20347]: audit 2024-01-27T23:29:44.570707+0000 mon.smithi099 (mon.0) 485 : audit [INF] from='osd.7 [v2:172.21.15.99:6826/1456763956,v1:172.21.15.99:6827/1456763956]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]: dispatch 2024-01-27T23:29:46.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:46 smithi099 bash[16328]: cluster 2024-01-27T23:29:45.168053+0000 mgr.smithi099.hzjdah (mgr.14182) 72 : cluster [DBG] pgmap v79: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-27T23:29:46.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:46 smithi099 bash[16328]: audit 2024-01-27T23:29:45.573902+0000 mon.smithi099 (mon.0) 486 : audit [INF] from='osd.7 [v2:172.21.15.99:6826/1456763956,v1:172.21.15.99:6827/1456763956]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]': finished 2024-01-27T23:29:46.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:46 smithi099 bash[16328]: cluster 2024-01-27T23:29:45.574033+0000 mon.smithi099 (mon.0) 487 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-01-27T23:29:46.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:46 smithi099 bash[16328]: audit 2024-01-27T23:29:45.574209+0000 mon.smithi099 (mon.0) 488 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:46.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:46 smithi099 bash[16328]: audit 2024-01-27T23:29:45.580945+0000 mon.smithi099 (mon.0) 489 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:46.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:46 smithi099 bash[16328]: cluster 2024-01-27T23:29:46.573879+0000 mon.smithi099 (mon.0) 490 : cluster [INF] osd.7 [v2:172.21.15.99:6826/1456763956,v1:172.21.15.99:6827/1456763956] boot 2024-01-27T23:29:46.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:46 smithi099 bash[16328]: cluster 2024-01-27T23:29:46.573943+0000 mon.smithi099 (mon.0) 491 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-01-27T23:29:46.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:46 smithi099 bash[16328]: audit 2024-01-27T23:29:46.574597+0000 mon.smithi099 (mon.0) 492 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:47.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:46 smithi142 bash[20347]: cluster 2024-01-27T23:29:45.168053+0000 mgr.smithi099.hzjdah (mgr.14182) 72 : cluster [DBG] pgmap v79: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-27T23:29:47.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:46 smithi142 bash[20347]: audit 2024-01-27T23:29:45.573902+0000 mon.smithi099 (mon.0) 486 : audit [INF] from='osd.7 [v2:172.21.15.99:6826/1456763956,v1:172.21.15.99:6827/1456763956]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi099", "root=default"]}]': finished 2024-01-27T23:29:47.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:46 smithi142 bash[20347]: cluster 2024-01-27T23:29:45.574033+0000 mon.smithi099 (mon.0) 487 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-01-27T23:29:47.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:46 smithi142 bash[20347]: audit 2024-01-27T23:29:45.574209+0000 mon.smithi099 (mon.0) 488 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:47.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:46 smithi142 bash[20347]: audit 2024-01-27T23:29:45.580945+0000 mon.smithi099 (mon.0) 489 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:47.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:46 smithi142 bash[20347]: cluster 2024-01-27T23:29:46.573879+0000 mon.smithi099 (mon.0) 490 : cluster [INF] osd.7 [v2:172.21.15.99:6826/1456763956,v1:172.21.15.99:6827/1456763956] boot 2024-01-27T23:29:47.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:46 smithi142 bash[20347]: cluster 2024-01-27T23:29:46.573943+0000 mon.smithi099 (mon.0) 491 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-01-27T23:29:47.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:46 smithi142 bash[20347]: audit 2024-01-27T23:29:46.574597+0000 mon.smithi099 (mon.0) 492 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:29:48.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:47 smithi142 bash[20347]: cluster 2024-01-27T23:29:45.270278+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:48.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:47 smithi142 bash[20347]: cluster 2024-01-27T23:29:45.270391+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:48.076 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:47 smithi099 bash[16328]: cluster 2024-01-27T23:29:45.270278+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:29:48.076 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:47 smithi099 bash[16328]: cluster 2024-01-27T23:29:45.270391+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:29:48.100 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:29:48.909 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":38,"num_osds":8,"num_up_osds":8,"osd_up_since":1706398186,"num_in_osds":8,"osd_in_since":1706398136,"num_remapped_pgs":0} 2024-01-27T23:29:48.910 INFO:tasks.cephadm:Setting up client nodes... 2024-01-27T23:29:48.910 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-01-27T23:29:48.911 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:48 smithi099 bash[16328]: cluster 2024-01-27T23:29:47.168649+0000 mgr.smithi099.hzjdah (mgr.14182) 73 : cluster [DBG] pgmap v82: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:48.911 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:48 smithi099 bash[16328]: cluster 2024-01-27T23:29:47.588211+0000 mon.smithi099 (mon.0) 493 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-01-27T23:29:48.911 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:48 smithi099 bash[16328]: audit 2024-01-27T23:29:47.719758+0000 mon.smithi099 (mon.0) 494 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:48.911 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:48 smithi099 bash[16328]: cephadm 2024-01-27T23:29:47.721367+0000 mgr.smithi099.hzjdah (mgr.14182) 74 : cephadm [INF] Reconfiguring mon.smithi099 (unknown last config time)... 2024-01-27T23:29:48.911 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:48 smithi099 bash[16328]: audit 2024-01-27T23:29:47.721927+0000 mon.smithi099 (mon.0) 495 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:29:48.911 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:48 smithi099 bash[16328]: audit 2024-01-27T23:29:47.723362+0000 mon.smithi099 (mon.0) 496 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-27T23:29:48.911 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:48 smithi099 bash[16328]: audit 2024-01-27T23:29:47.724625+0000 mon.smithi099 (mon.0) 497 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:48.911 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:48 smithi099 bash[16328]: cephadm 2024-01-27T23:29:47.725719+0000 mgr.smithi099.hzjdah (mgr.14182) 75 : cephadm [INF] Reconfiguring daemon mon.smithi099 on smithi099 2024-01-27T23:29:48.911 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:48 smithi099 bash[16328]: audit 2024-01-27T23:29:48.108118+0000 mon.smithi099 (mon.0) 498 : audit [DBG] from='client.? 172.21.15.99:0/3097539997' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:49.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:48 smithi142 bash[20347]: cluster 2024-01-27T23:29:47.168649+0000 mgr.smithi099.hzjdah (mgr.14182) 73 : cluster [DBG] pgmap v82: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:49.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:48 smithi142 bash[20347]: cluster 2024-01-27T23:29:47.588211+0000 mon.smithi099 (mon.0) 493 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-01-27T23:29:49.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:48 smithi142 bash[20347]: audit 2024-01-27T23:29:47.719758+0000 mon.smithi099 (mon.0) 494 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:49.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:48 smithi142 bash[20347]: cephadm 2024-01-27T23:29:47.721367+0000 mgr.smithi099.hzjdah (mgr.14182) 74 : cephadm [INF] Reconfiguring mon.smithi099 (unknown last config time)... 2024-01-27T23:29:49.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:48 smithi142 bash[20347]: audit 2024-01-27T23:29:47.721927+0000 mon.smithi099 (mon.0) 495 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:29:49.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:48 smithi142 bash[20347]: audit 2024-01-27T23:29:47.723362+0000 mon.smithi099 (mon.0) 496 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-27T23:29:49.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:48 smithi142 bash[20347]: audit 2024-01-27T23:29:47.724625+0000 mon.smithi099 (mon.0) 497 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:49.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:48 smithi142 bash[20347]: cephadm 2024-01-27T23:29:47.725719+0000 mgr.smithi099.hzjdah (mgr.14182) 75 : cephadm [INF] Reconfiguring daemon mon.smithi099 on smithi099 2024-01-27T23:29:49.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:48 smithi142 bash[20347]: audit 2024-01-27T23:29:48.108118+0000 mon.smithi099 (mon.0) 498 : audit [DBG] from='client.? 172.21.15.99:0/3097539997' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:29:49.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:49 smithi099 bash[16328]: cluster 2024-01-27T23:29:48.597041+0000 mon.smithi099 (mon.0) 499 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-01-27T23:29:50.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:49 smithi142 bash[20347]: cluster 2024-01-27T23:29:48.597041+0000 mon.smithi099 (mon.0) 499 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-01-27T23:29:50.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:50 smithi099 bash[16328]: cluster 2024-01-27T23:29:49.169157+0000 mgr.smithi099.hzjdah (mgr.14182) 76 : cluster [DBG] pgmap v85: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:50.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:50 smithi099 bash[16328]: audit 2024-01-27T23:29:50.277337+0000 mon.smithi099 (mon.0) 500 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:50.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:50 smithi099 bash[16328]: audit 2024-01-27T23:29:50.278694+0000 mon.smithi099 (mon.0) 501 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi099.hzjdah", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-27T23:29:50.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:50 smithi099 bash[16328]: audit 2024-01-27T23:29:50.279775+0000 mon.smithi099 (mon.0) 502 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-27T23:29:50.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:50 smithi099 bash[16328]: audit 2024-01-27T23:29:50.280675+0000 mon.smithi099 (mon.0) 503 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:51.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:50 smithi142 bash[20347]: cluster 2024-01-27T23:29:49.169157+0000 mgr.smithi099.hzjdah (mgr.14182) 76 : cluster [DBG] pgmap v85: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:51.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:50 smithi142 bash[20347]: audit 2024-01-27T23:29:50.277337+0000 mon.smithi099 (mon.0) 500 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:51.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:50 smithi142 bash[20347]: audit 2024-01-27T23:29:50.278694+0000 mon.smithi099 (mon.0) 501 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi099.hzjdah", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-27T23:29:51.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:50 smithi142 bash[20347]: audit 2024-01-27T23:29:50.279775+0000 mon.smithi099 (mon.0) 502 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-27T23:29:51.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:50 smithi142 bash[20347]: audit 2024-01-27T23:29:50.280675+0000 mon.smithi099 (mon.0) 503 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:51.916 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:51 smithi099 bash[16328]: cephadm 2024-01-27T23:29:50.278257+0000 mgr.smithi099.hzjdah (mgr.14182) 77 : cephadm [INF] Reconfiguring mgr.smithi099.hzjdah (unknown last config time)... 2024-01-27T23:29:51.916 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:51 smithi099 bash[16328]: cephadm 2024-01-27T23:29:50.281506+0000 mgr.smithi099.hzjdah (mgr.14182) 78 : cephadm [INF] Reconfiguring daemon mgr.smithi099.hzjdah on smithi099 2024-01-27T23:29:52.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:51 smithi142 bash[20347]: cephadm 2024-01-27T23:29:50.278257+0000 mgr.smithi099.hzjdah (mgr.14182) 77 : cephadm [INF] Reconfiguring mgr.smithi099.hzjdah (unknown last config time)... 2024-01-27T23:29:52.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:51 smithi142 bash[20347]: cephadm 2024-01-27T23:29:50.281506+0000 mgr.smithi099.hzjdah (mgr.14182) 78 : cephadm [INF] Reconfiguring daemon mgr.smithi099.hzjdah on smithi099 2024-01-27T23:29:52.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:52 smithi099 bash[16328]: cluster 2024-01-27T23:29:51.169736+0000 mgr.smithi099.hzjdah (mgr.14182) 79 : cluster [DBG] pgmap v86: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:53.045 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:52 smithi142 bash[20347]: cluster 2024-01-27T23:29:51.169736+0000 mgr.smithi099.hzjdah (mgr.14182) 79 : cluster [DBG] pgmap v86: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:53.653 INFO:teuthology.orchestra.run.smithi099.stdout:[client.0] 2024-01-27T23:29:53.654 INFO:teuthology.orchestra.run.smithi099.stdout: key = AQDxkbVlA30lJxAAHM7q/WcXYWuzCcmo/SyqTw== 2024-01-27T23:29:54.499 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-27T23:29:54.499 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-01-27T23:29:54.499 DEBUG:teuthology.orchestra.run.smithi099:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-01-27T23:29:54.500 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:54 smithi099 bash[16328]: cluster 2024-01-27T23:29:53.170281+0000 mgr.smithi099.hzjdah (mgr.14182) 80 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:54.500 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:54 smithi099 bash[16328]: audit 2024-01-27T23:29:53.181222+0000 mon.smithi099 (mon.0) 504 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:54.500 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:54 smithi099 bash[16328]: cephadm 2024-01-27T23:29:53.183099+0000 mgr.smithi099.hzjdah (mgr.14182) 81 : cephadm [INF] Reconfiguring alertmanager.smithi099 (dependencies changed)... 2024-01-27T23:29:54.500 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:54 smithi099 bash[16328]: cephadm 2024-01-27T23:29:53.199288+0000 mgr.smithi099.hzjdah (mgr.14182) 82 : cephadm [INF] Reconfiguring daemon alertmanager.smithi099 on smithi099 2024-01-27T23:29:54.500 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:54 smithi099 bash[16328]: audit 2024-01-27T23:29:53.656416+0000 mon.smithi099 (mon.0) 505 : audit [INF] from='client.? 172.21.15.99:0/4129509409' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-27T23:29:54.500 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:54 smithi099 bash[16328]: audit 2024-01-27T23:29:53.661511+0000 mon.smithi099 (mon.0) 506 : audit [INF] from='client.? 172.21.15.99:0/4129509409' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-01-27T23:29:54.519 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-01-27T23:29:54.530 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:54 smithi142 bash[20347]: cluster 2024-01-27T23:29:53.170281+0000 mgr.smithi099.hzjdah (mgr.14182) 80 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:54.530 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:54 smithi142 bash[20347]: audit 2024-01-27T23:29:53.181222+0000 mon.smithi099 (mon.0) 504 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:54.530 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:54 smithi142 bash[20347]: cephadm 2024-01-27T23:29:53.183099+0000 mgr.smithi099.hzjdah (mgr.14182) 81 : cephadm [INF] Reconfiguring alertmanager.smithi099 (dependencies changed)... 2024-01-27T23:29:54.530 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:54 smithi142 bash[20347]: cephadm 2024-01-27T23:29:53.199288+0000 mgr.smithi099.hzjdah (mgr.14182) 82 : cephadm [INF] Reconfiguring daemon alertmanager.smithi099 on smithi099 2024-01-27T23:29:54.530 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:54 smithi142 bash[20347]: audit 2024-01-27T23:29:53.656416+0000 mon.smithi099 (mon.0) 505 : audit [INF] from='client.? 172.21.15.99:0/4129509409' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-27T23:29:54.531 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:54 smithi142 bash[20347]: audit 2024-01-27T23:29:53.661511+0000 mon.smithi099 (mon.0) 506 : audit [INF] from='client.? 172.21.15.99:0/4129509409' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-01-27T23:29:56.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:56 smithi099 bash[16328]: cluster 2024-01-27T23:29:55.170786+0000 mgr.smithi099.hzjdah (mgr.14182) 83 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:56.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:56 smithi142 bash[20347]: cluster 2024-01-27T23:29:55.170786+0000 mgr.smithi099.hzjdah (mgr.14182) 83 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:57.642 INFO:teuthology.orchestra.run.smithi142.stdout:[client.1] 2024-01-27T23:29:57.642 INFO:teuthology.orchestra.run.smithi142.stdout: key = AQD1kbVlUlRFJhAAkMp1WRhCeCP3nO03WSL64w== 2024-01-27T23:29:58.286 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-27T23:29:58.286 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-01-27T23:29:58.286 DEBUG:teuthology.orchestra.run.smithi142:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-01-27T23:29:58.351 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd dump --format=json 2024-01-27T23:29:58.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:58 smithi142 bash[20347]: cluster 2024-01-27T23:29:57.171350+0000 mgr.smithi099.hzjdah (mgr.14182) 84 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:58.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:58 smithi142 bash[20347]: audit 2024-01-27T23:29:57.641189+0000 mon.smithi142 (mon.1) 18 : audit [INF] from='client.? 172.21.15.142:0/174664913' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-27T23:29:58.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:58 smithi142 bash[20347]: audit 2024-01-27T23:29:57.641726+0000 mon.smithi099 (mon.0) 507 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-27T23:29:58.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:58 smithi142 bash[20347]: audit 2024-01-27T23:29:57.649206+0000 mon.smithi099 (mon.0) 508 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-01-27T23:29:58.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:58 smithi142 bash[20347]: audit 2024-01-27T23:29:57.921688+0000 mon.smithi099 (mon.0) 509 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:58.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:58 smithi142 bash[20347]: audit 2024-01-27T23:29:57.922902+0000 mon.smithi099 (mon.0) 510 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi099", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:29:58.547 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:58 smithi142 bash[20347]: audit 2024-01-27T23:29:57.923987+0000 mon.smithi099 (mon.0) 511 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:58 smithi099 bash[16328]: cluster 2024-01-27T23:29:57.171350+0000 mgr.smithi099.hzjdah (mgr.14182) 84 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:29:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:58 smithi099 bash[16328]: audit 2024-01-27T23:29:57.641189+0000 mon.smithi142 (mon.1) 18 : audit [INF] from='client.? 172.21.15.142:0/174664913' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-27T23:29:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:58 smithi099 bash[16328]: audit 2024-01-27T23:29:57.641726+0000 mon.smithi099 (mon.0) 507 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-27T23:29:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:58 smithi099 bash[16328]: audit 2024-01-27T23:29:57.649206+0000 mon.smithi099 (mon.0) 508 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-01-27T23:29:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:58 smithi099 bash[16328]: audit 2024-01-27T23:29:57.921688+0000 mon.smithi099 (mon.0) 509 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:29:58.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:58 smithi099 bash[16328]: audit 2024-01-27T23:29:57.922902+0000 mon.smithi099 (mon.0) 510 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi099", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:29:58.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:58 smithi099 bash[16328]: audit 2024-01-27T23:29:57.923987+0000 mon.smithi099 (mon.0) 511 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:29:59.638 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:59 smithi099 bash[16328]: cephadm 2024-01-27T23:29:57.922519+0000 mgr.smithi099.hzjdah (mgr.14182) 85 : cephadm [INF] Reconfiguring crash.smithi099 (monmap changed)... 2024-01-27T23:29:59.638 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:29:59 smithi099 bash[16328]: cephadm 2024-01-27T23:29:57.924846+0000 mgr.smithi099.hzjdah (mgr.14182) 86 : cephadm [INF] Reconfiguring daemon crash.smithi099 on smithi099 2024-01-27T23:29:59.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:59 smithi142 bash[20347]: cephadm 2024-01-27T23:29:57.922519+0000 mgr.smithi099.hzjdah (mgr.14182) 85 : cephadm [INF] Reconfiguring crash.smithi099 (monmap changed)... 2024-01-27T23:29:59.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:29:59 smithi142 bash[20347]: cephadm 2024-01-27T23:29:57.924846+0000 mgr.smithi099.hzjdah (mgr.14182) 86 : cephadm [INF] Reconfiguring daemon crash.smithi099 on smithi099 2024-01-27T23:30:00.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:00 smithi142 bash[20347]: cluster 2024-01-27T23:29:59.171961+0000 mgr.smithi099.hzjdah (mgr.14182) 87 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:00.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:00 smithi142 bash[20347]: cluster 2024-01-27T23:30:00.000189+0000 mon.smithi099 (mon.0) 512 : cluster [INF] overall HEALTH_OK 2024-01-27T23:30:00.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:00 smithi142 bash[20347]: audit 2024-01-27T23:30:00.399680+0000 mon.smithi099 (mon.0) 513 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:00.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:00 smithi099 bash[16328]: cluster 2024-01-27T23:29:59.171961+0000 mgr.smithi099.hzjdah (mgr.14182) 87 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:00.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:00 smithi099 bash[16328]: cluster 2024-01-27T23:30:00.000189+0000 mon.smithi099 (mon.0) 512 : cluster [INF] overall HEALTH_OK 2024-01-27T23:30:00.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:00 smithi099 bash[16328]: audit 2024-01-27T23:30:00.399680+0000 mon.smithi099 (mon.0) 513 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:01.767 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:01 smithi099 bash[16328]: cephadm 2024-01-27T23:30:00.400870+0000 mgr.smithi099.hzjdah (mgr.14182) 88 : cephadm [INF] Reconfiguring grafana.smithi099 (dependencies changed)... 2024-01-27T23:30:01.767 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:01 smithi099 bash[16328]: cephadm 2024-01-27T23:30:00.447610+0000 mgr.smithi099.hzjdah (mgr.14182) 89 : cephadm [INF] Reconfiguring daemon grafana.smithi099 on smithi099 2024-01-27T23:30:01.795 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:01 smithi142 bash[20347]: cephadm 2024-01-27T23:30:00.400870+0000 mgr.smithi099.hzjdah (mgr.14182) 88 : cephadm [INF] Reconfiguring grafana.smithi099 (dependencies changed)... 2024-01-27T23:30:01.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:01 smithi142 bash[20347]: cephadm 2024-01-27T23:30:00.447610+0000 mgr.smithi099.hzjdah (mgr.14182) 89 : cephadm [INF] Reconfiguring daemon grafana.smithi099 on smithi099 2024-01-27T23:30:02.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:02 smithi142 bash[20347]: cluster 2024-01-27T23:30:01.172646+0000 mgr.smithi099.hzjdah (mgr.14182) 90 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:02.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:02 smithi099 bash[16328]: cluster 2024-01-27T23:30:01.172646+0000 mgr.smithi099.hzjdah (mgr.14182) 90 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:04.573 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:30:04.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:04 smithi142 bash[20347]: cluster 2024-01-27T23:30:03.173308+0000 mgr.smithi099.hzjdah (mgr.14182) 91 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:04.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:04 smithi099 bash[16328]: cluster 2024-01-27T23:30:03.173308+0000 mgr.smithi099.hzjdah (mgr.14182) 91 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:06.395 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:06 smithi099 bash[16328]: cluster 2024-01-27T23:30:05.173922+0000 mgr.smithi099.hzjdah (mgr.14182) 92 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:06.396 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:06 smithi099 bash[16328]: audit 2024-01-27T23:30:05.348023+0000 mon.smithi099 (mon.0) 514 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:06.396 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:06 smithi099 bash[16328]: cephadm 2024-01-27T23:30:05.349079+0000 mgr.smithi099.hzjdah (mgr.14182) 93 : cephadm [INF] Reconfiguring crash.smithi142 (monmap changed)... 2024-01-27T23:30:06.396 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:06 smithi099 bash[16328]: audit 2024-01-27T23:30:05.349394+0000 mon.smithi099 (mon.0) 515 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi142", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:30:06.396 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:06 smithi099 bash[16328]: audit 2024-01-27T23:30:05.350474+0000 mon.smithi099 (mon.0) 516 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:06.396 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:06 smithi099 bash[16328]: cephadm 2024-01-27T23:30:05.351223+0000 mgr.smithi099.hzjdah (mgr.14182) 94 : cephadm [INF] Reconfiguring daemon crash.smithi142 on smithi142 2024-01-27T23:30:06.642 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:06 smithi142 bash[20347]: cluster 2024-01-27T23:30:05.173922+0000 mgr.smithi099.hzjdah (mgr.14182) 92 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:06.642 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:06 smithi142 bash[20347]: audit 2024-01-27T23:30:05.348023+0000 mon.smithi099 (mon.0) 514 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:06.643 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:06 smithi142 bash[20347]: cephadm 2024-01-27T23:30:05.349079+0000 mgr.smithi099.hzjdah (mgr.14182) 93 : cephadm [INF] Reconfiguring crash.smithi142 (monmap changed)... 2024-01-27T23:30:06.643 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:06 smithi142 bash[20347]: audit 2024-01-27T23:30:05.349394+0000 mon.smithi099 (mon.0) 515 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi142", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:30:06.643 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:06 smithi142 bash[20347]: audit 2024-01-27T23:30:05.350474+0000 mon.smithi099 (mon.0) 516 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:06.643 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:06 smithi142 bash[20347]: cephadm 2024-01-27T23:30:05.351223+0000 mgr.smithi099.hzjdah (mgr.14182) 94 : cephadm [INF] Reconfiguring daemon crash.smithi142 on smithi142 2024-01-27T23:30:08.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:08 smithi099 bash[16328]: cluster 2024-01-27T23:30:07.174654+0000 mgr.smithi099.hzjdah (mgr.14182) 95 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:08.362 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:08 smithi099 bash[16328]: audit 2024-01-27T23:30:07.224019+0000 mon.smithi099 (mon.0) 517 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:08.362 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:08 smithi099 bash[16328]: cephadm 2024-01-27T23:30:07.225588+0000 mgr.smithi099.hzjdah (mgr.14182) 96 : cephadm [INF] Reconfiguring mgr.smithi142.nlkoaq (monmap changed)... 2024-01-27T23:30:08.362 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:08 smithi099 bash[16328]: audit 2024-01-27T23:30:07.226165+0000 mon.smithi099 (mon.0) 518 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi142.nlkoaq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-27T23:30:08.362 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:08 smithi099 bash[16328]: audit 2024-01-27T23:30:07.228215+0000 mon.smithi099 (mon.0) 519 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-27T23:30:08.362 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:08 smithi099 bash[16328]: audit 2024-01-27T23:30:07.229713+0000 mon.smithi099 (mon.0) 520 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:08.362 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:08 smithi099 bash[16328]: cephadm 2024-01-27T23:30:07.231087+0000 mgr.smithi099.hzjdah (mgr.14182) 97 : cephadm [INF] Reconfiguring daemon mgr.smithi142.nlkoaq on smithi142 2024-01-27T23:30:08.407 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:30:08.407 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":39,"fsid":"54223e96-bd6b-11ee-95b2-87774f69a715","created":"2024-01-27T23:25:51.974654+0000","modified":"2024-01-27T23:29:48.590291+0000","last_up_change":"2024-01-27T23:29:46.567408+0000","last_in_change":"2024-01-27T23:28:56.243957+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-01-27T23:29:27.911656+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"edc8969a-03b9-4db6-858f-9c89bdad6fc1","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6800","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6801","nonce":2143864733}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6802","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6803","nonce":2143864733}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6806","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6807","nonce":2143864733}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6804","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6805","nonce":2143864733}]},"public_addr":"172.21.15.142:6801/2143864733","cluster_addr":"172.21.15.142:6803/2143864733","heartbeat_back_addr":"172.21.15.142:6807/2143864733","heartbeat_front_addr":"172.21.15.142:6805/2143864733","state":["exists","up"]},{"osd":1,"uuid":"7ed92ba7-eb2c-4365-9fb2-b883e5bcbf10","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":29,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6802","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6803","nonce":3831341837}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6804","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6805","nonce":3831341837}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6808","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6809","nonce":3831341837}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6806","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6807","nonce":3831341837}]},"public_addr":"172.21.15.99:6803/3831341837","cluster_addr":"172.21.15.99:6805/3831341837","heartbeat_back_addr":"172.21.15.99:6809/3831341837","heartbeat_front_addr":"172.21.15.99:6807/3831341837","state":["exists","up"]},{"osd":2,"uuid":"57a5015b-a452-4afb-b008-75265f9bf937","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6808","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6809","nonce":2474935723}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6810","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6811","nonce":2474935723}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6814","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6815","nonce":2474935723}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6812","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6813","nonce":2474935723}]},"public_addr":"172.21.15.142:6809/2474935723","cluster_addr":"172.21.15.142:6811/2474935723","heartbeat_back_addr":"172.21.15.142:6815/2474935723","heartbeat_front_addr":"172.21.15.142:6813/2474935723","state":["exists","up"]},{"osd":3,"uuid":"6a23d77d-52f8-4025-a345-50d27d6a1555","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6810","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6811","nonce":743344191}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6812","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6813","nonce":743344191}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6816","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6817","nonce":743344191}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6814","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6815","nonce":743344191}]},"public_addr":"172.21.15.99:6811/743344191","cluster_addr":"172.21.15.99:6813/743344191","heartbeat_back_addr":"172.21.15.99:6817/743344191","heartbeat_front_addr":"172.21.15.99:6815/743344191","state":["exists","up"]},{"osd":4,"uuid":"68a8340a-d72f-4888-8118-e3653b0e9cf6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6816","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6817","nonce":3262620398}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6818","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6819","nonce":3262620398}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6822","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6823","nonce":3262620398}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6820","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6821","nonce":3262620398}]},"public_addr":"172.21.15.142:6817/3262620398","cluster_addr":"172.21.15.142:6819/3262620398","heartbeat_back_addr":"172.21.15.142:6823/3262620398","heartbeat_front_addr":"172.21.15.142:6821/3262620398","state":["exists","up"]},{"osd":5,"uuid":"9d3293da-10c1-486d-b04d-4234b095c68f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6818","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6819","nonce":3033877278}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6820","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6821","nonce":3033877278}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6824","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6825","nonce":3033877278}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6822","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6823","nonce":3033877278}]},"public_addr":"172.21.15.99:6819/3033877278","cluster_addr":"172.21.15.99:6821/3033877278","heartbeat_back_addr":"172.21.15.99:6825/3033877278","heartbeat_front_addr":"172.21.15.99:6823/3033877278","state":["exists","up"]},{"osd":6,"uuid":"b371799d-60d7-4b28-9ae4-cdee2ccfd590","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6824","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6825","nonce":2303565403}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6826","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6827","nonce":2303565403}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6830","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6831","nonce":2303565403}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6828","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6829","nonce":2303565403}]},"public_addr":"172.21.15.142:6825/2303565403","cluster_addr":"172.21.15.142:6827/2303565403","heartbeat_back_addr":"172.21.15.142:6831/2303565403","heartbeat_front_addr":"172.21.15.142:6829/2303565403","state":["exists","up"]},{"osd":7,"uuid":"03bfd01d-bba8-4cc5-81f5-d1b8c939a6c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6826","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6827","nonce":1456763956}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6828","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6829","nonce":1456763956}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6832","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6833","nonce":1456763956}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6830","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6831","nonce":1456763956}]},"public_addr":"172.21.15.99:6827/1456763956","cluster_addr":"172.21.15.99:6829/1456763956","heartbeat_back_addr":"172.21.15.99:6833/1456763956","heartbeat_front_addr":"172.21.15.99:6831/1456763956","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:19.640867+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:25.842216+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:24.560915+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:32.717589+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:30.398703+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:39.657552+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:34.228050+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:45.270399+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.99:0/296875226":"2024-01-28T23:27:55.135191+0000","172.21.15.99:0/366188701":"2024-01-28T23:27:55.135191+0000","172.21.15.99:6801/3385683013":"2024-01-28T23:27:55.135191+0000","172.21.15.99:6800/3385683013":"2024-01-28T23:27:55.135191+0000","172.21.15.99:6801/2828546026":"2024-01-28T23:26:58.975565+0000","172.21.15.99:6800/2828546026":"2024-01-28T23:26:58.975565+0000","172.21.15.99:0/2874557606":"2024-01-28T23:26:58.975565+0000","172.21.15.99:0/4157447687":"2024-01-28T23:26:58.975565+0000","172.21.15.99:0/3918582191":"2024-01-28T23:26:19.447450+0000","172.21.15.99:6800/3784735487":"2024-01-28T23:26:19.447450+0000","172.21.15.99:6801/3784735487":"2024-01-28T23:26:19.447450+0000","172.21.15.99:0/1753887979":"2024-01-28T23:26:19.447450+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-01-27T23:30:08.439 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:08 smithi142 bash[20347]: cluster 2024-01-27T23:30:07.174654+0000 mgr.smithi099.hzjdah (mgr.14182) 95 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:08.440 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:08 smithi142 bash[20347]: audit 2024-01-27T23:30:07.224019+0000 mon.smithi099 (mon.0) 517 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:08.440 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:08 smithi142 bash[20347]: cephadm 2024-01-27T23:30:07.225588+0000 mgr.smithi099.hzjdah (mgr.14182) 96 : cephadm [INF] Reconfiguring mgr.smithi142.nlkoaq (monmap changed)... 2024-01-27T23:30:08.440 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:08 smithi142 bash[20347]: audit 2024-01-27T23:30:07.226165+0000 mon.smithi099 (mon.0) 518 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi142.nlkoaq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-27T23:30:08.440 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:08 smithi142 bash[20347]: audit 2024-01-27T23:30:07.228215+0000 mon.smithi099 (mon.0) 519 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-27T23:30:08.440 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:08 smithi142 bash[20347]: audit 2024-01-27T23:30:07.229713+0000 mon.smithi099 (mon.0) 520 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:08.440 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:08 smithi142 bash[20347]: cephadm 2024-01-27T23:30:07.231087+0000 mgr.smithi099.hzjdah (mgr.14182) 97 : cephadm [INF] Reconfiguring daemon mgr.smithi142.nlkoaq on smithi142 2024-01-27T23:30:09.072 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2024-01-27T23:29:27.911656+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '24', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr_devicehealth': {}}}] 2024-01-27T23:30:09.072 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2024-01-27T23:30:09.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:09 smithi142 bash[20347]: audit 2024-01-27T23:30:08.413536+0000 mon.smithi099 (mon.0) 521 : audit [DBG] from='client.? 172.21.15.99:0/3981091368' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:30:09.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:09 smithi142 bash[20347]: audit 2024-01-27T23:30:09.029170+0000 mon.smithi099 (mon.0) 522 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:09.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:09 smithi142 bash[20347]: audit 2024-01-27T23:30:09.031264+0000 mon.smithi099 (mon.0) 523 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:30:09.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:09 smithi142 bash[20347]: audit 2024-01-27T23:30:09.032979+0000 mon.smithi099 (mon.0) 524 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-27T23:30:09.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:09 smithi142 bash[20347]: audit 2024-01-27T23:30:09.034511+0000 mon.smithi099 (mon.0) 525 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:09.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:09 smithi099 bash[16328]: audit 2024-01-27T23:30:08.413536+0000 mon.smithi099 (mon.0) 521 : audit [DBG] from='client.? 172.21.15.99:0/3981091368' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:30:09.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:09 smithi099 bash[16328]: audit 2024-01-27T23:30:09.029170+0000 mon.smithi099 (mon.0) 522 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:09.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:09 smithi099 bash[16328]: audit 2024-01-27T23:30:09.031264+0000 mon.smithi099 (mon.0) 523 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:30:09.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:09 smithi099 bash[16328]: audit 2024-01-27T23:30:09.032979+0000 mon.smithi099 (mon.0) 524 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-27T23:30:09.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:09 smithi099 bash[16328]: audit 2024-01-27T23:30:09.034511+0000 mon.smithi099 (mon.0) 525 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:10.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:10 smithi142 bash[20347]: cephadm 2024-01-27T23:30:09.030701+0000 mgr.smithi099.hzjdah (mgr.14182) 98 : cephadm [INF] Reconfiguring mon.smithi142 (monmap changed)... 2024-01-27T23:30:10.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:10 smithi142 bash[20347]: cephadm 2024-01-27T23:30:09.036005+0000 mgr.smithi099.hzjdah (mgr.14182) 99 : cephadm [INF] Reconfiguring daemon mon.smithi142 on smithi142 2024-01-27T23:30:10.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:10 smithi142 bash[20347]: cluster 2024-01-27T23:30:09.175278+0000 mgr.smithi099.hzjdah (mgr.14182) 100 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:10.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:10 smithi099 bash[16328]: cephadm 2024-01-27T23:30:09.030701+0000 mgr.smithi099.hzjdah (mgr.14182) 98 : cephadm [INF] Reconfiguring mon.smithi142 (monmap changed)... 2024-01-27T23:30:10.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:10 smithi099 bash[16328]: cephadm 2024-01-27T23:30:09.036005+0000 mgr.smithi099.hzjdah (mgr.14182) 99 : cephadm [INF] Reconfiguring daemon mon.smithi142 on smithi142 2024-01-27T23:30:10.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:10 smithi099 bash[16328]: cluster 2024-01-27T23:30:09.175278+0000 mgr.smithi099.hzjdah (mgr.14182) 100 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:12.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:10.965604+0000 mon.smithi099 (mon.0) 526 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:10.973896+0000 mon.smithi099 (mon.0) 527 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:10.974871+0000 mgr.smithi099.hzjdah (mgr.14182) 101 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:10.976912+0000 mon.smithi099 (mon.0) 528 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi099.front.sepia.ceph.com:9093"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:10.977762+0000 mgr.smithi099.hzjdah (mgr.14182) 102 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi099.front.sepia.ceph.com:9093"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:10.986237+0000 mon.smithi099 (mon.0) 529 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:10.996411+0000 mon.smithi099 (mon.0) 530 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:10.997057+0000 mgr.smithi099.hzjdah (mgr.14182) 103 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:11.007742+0000 mon.smithi099 (mon.0) 531 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi099.front.sepia.ceph.com:3000"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:11.008364+0000 mgr.smithi099.hzjdah (mgr.14182) 104 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi099.front.sepia.ceph.com:3000"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:11.016854+0000 mon.smithi099 (mon.0) 532 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:11.025898+0000 mon.smithi099 (mon.0) 533 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:11.026738+0000 mgr.smithi099.hzjdah (mgr.14182) 105 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:11.033363+0000 mon.smithi099 (mon.0) 534 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi142.front.sepia.ceph.com:9095"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:11.034044+0000 mgr.smithi099.hzjdah (mgr.14182) 106 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi142.front.sepia.ceph.com:9095"}]: dispatch 2024-01-27T23:30:12.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:11.041322+0000 mon.smithi099 (mon.0) 535 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:12.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: audit 2024-01-27T23:30:11.047701+0000 mon.smithi099 (mon.0) 536 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:30:12.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:11 smithi142 bash[20347]: cluster 2024-01-27T23:30:11.175832+0000 mgr.smithi099.hzjdah (mgr.14182) 107 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:12.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:10.965604+0000 mon.smithi099 (mon.0) 526 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:10.973896+0000 mon.smithi099 (mon.0) 527 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:10.974871+0000 mgr.smithi099.hzjdah (mgr.14182) 101 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:10.976912+0000 mon.smithi099 (mon.0) 528 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi099.front.sepia.ceph.com:9093"}]: dispatch 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:10.977762+0000 mgr.smithi099.hzjdah (mgr.14182) 102 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi099.front.sepia.ceph.com:9093"}]: dispatch 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:10.986237+0000 mon.smithi099 (mon.0) 529 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:10.996411+0000 mon.smithi099 (mon.0) 530 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:10.997057+0000 mgr.smithi099.hzjdah (mgr.14182) 103 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:11.007742+0000 mon.smithi099 (mon.0) 531 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi099.front.sepia.ceph.com:3000"}]: dispatch 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:11.008364+0000 mgr.smithi099.hzjdah (mgr.14182) 104 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi099.front.sepia.ceph.com:3000"}]: dispatch 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:11.016854+0000 mon.smithi099 (mon.0) 532 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:11.025898+0000 mon.smithi099 (mon.0) 533 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:11.026738+0000 mgr.smithi099.hzjdah (mgr.14182) 105 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-27T23:30:12.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:11.033363+0000 mon.smithi099 (mon.0) 534 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi142.front.sepia.ceph.com:9095"}]: dispatch 2024-01-27T23:30:12.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:11.034044+0000 mgr.smithi099.hzjdah (mgr.14182) 106 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi142.front.sepia.ceph.com:9095"}]: dispatch 2024-01-27T23:30:12.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:11.041322+0000 mon.smithi099 (mon.0) 535 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:12.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: audit 2024-01-27T23:30:11.047701+0000 mon.smithi099 (mon.0) 536 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:30:12.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:11 smithi099 bash[16328]: cluster 2024-01-27T23:30:11.175832+0000 mgr.smithi099.hzjdah (mgr.14182) 107 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:13.916 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:30:14.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:14 smithi142 bash[20347]: cluster 2024-01-27T23:30:13.176458+0000 mgr.smithi099.hzjdah (mgr.14182) 108 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:14.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:14 smithi099 bash[16328]: cluster 2024-01-27T23:30:13.176458+0000 mgr.smithi099.hzjdah (mgr.14182) 108 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:16.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:16 smithi142 bash[20347]: cluster 2024-01-27T23:30:15.177054+0000 mgr.smithi099.hzjdah (mgr.14182) 109 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:16.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:16 smithi142 bash[20347]: audit 2024-01-27T23:30:16.116627+0000 mon.smithi099 (mon.0) 537 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:16.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:16 smithi099 bash[16328]: cluster 2024-01-27T23:30:15.177054+0000 mgr.smithi099.hzjdah (mgr.14182) 109 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:16.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:16 smithi099 bash[16328]: audit 2024-01-27T23:30:16.116627+0000 mon.smithi099 (mon.0) 537 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:16.965 INFO:teuthology.orchestra.run.smithi099.stdout:pg_num: 1 2024-01-27T23:30:17.658 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-01-27T23:30:17.658 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-01-27T23:30:17.658 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph mgr dump --format=json 2024-01-27T23:30:18.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:17 smithi142 bash[20347]: audit 2024-01-27T23:30:16.925293+0000 mon.smithi099 (mon.0) 538 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:18.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:17 smithi142 bash[20347]: audit 2024-01-27T23:30:16.972152+0000 mon.smithi099 (mon.0) 539 : audit [DBG] from='client.? 172.21.15.99:0/787959315' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-01-27T23:30:18.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:17 smithi142 bash[20347]: cluster 2024-01-27T23:30:17.177729+0000 mgr.smithi099.hzjdah (mgr.14182) 110 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:18.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:17 smithi099 bash[16328]: audit 2024-01-27T23:30:16.925293+0000 mon.smithi099 (mon.0) 538 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:18.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:17 smithi099 bash[16328]: audit 2024-01-27T23:30:16.972152+0000 mon.smithi099 (mon.0) 539 : audit [DBG] from='client.? 172.21.15.99:0/787959315' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-01-27T23:30:18.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:17 smithi099 bash[16328]: cluster 2024-01-27T23:30:17.177729+0000 mgr.smithi099.hzjdah (mgr.14182) 110 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:20.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:20 smithi142 bash[20347]: cluster 2024-01-27T23:30:19.178337+0000 mgr.smithi099.hzjdah (mgr.14182) 111 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:20.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:20 smithi099 bash[16328]: cluster 2024-01-27T23:30:19.178337+0000 mgr.smithi099.hzjdah (mgr.14182) 111 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:22.248 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:30:22.701 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:22 smithi142 bash[20347]: cluster 2024-01-27T23:30:21.178954+0000 mgr.smithi099.hzjdah (mgr.14182) 112 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:22.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:22 smithi099 bash[16328]: cluster 2024-01-27T23:30:21.178954+0000 mgr.smithi099.hzjdah (mgr.14182) 112 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:24.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:24 smithi142 bash[20347]: cluster 2024-01-27T23:30:23.179631+0000 mgr.smithi099.hzjdah (mgr.14182) 113 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:24.826 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:24 smithi099 bash[16328]: cluster 2024-01-27T23:30:23.179631+0000 mgr.smithi099.hzjdah (mgr.14182) 113 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:26.242 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:30:26.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:26 smithi099 bash[16328]: cluster 2024-01-27T23:30:25.180081+0000 mgr.smithi099.hzjdah (mgr.14182) 114 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:26.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:26 smithi099 bash[16328]: audit 2024-01-27T23:30:26.245017+0000 mon.smithi099 (mon.0) 540 : audit [DBG] from='client.? 172.21.15.99:0/3380446847' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-01-27T23:30:26.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:26 smithi142 bash[20347]: cluster 2024-01-27T23:30:25.180081+0000 mgr.smithi099.hzjdah (mgr.14182) 114 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:26.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:26 smithi142 bash[20347]: audit 2024-01-27T23:30:26.245017+0000 mon.smithi099 (mon.0) 540 : audit [DBG] from='client.? 172.21.15.99:0/3380446847' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-01-27T23:30:26.920 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":18,"active_gid":14182,"active_name":"smithi099.hzjdah","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6800","nonce":3998023439},{"type":"v1","addr":"172.21.15.99:6801","nonce":3998023439}]},"active_addr":"172.21.15.99:6801/3998023439","active_change":"2024-01-27T23:27:55.135498+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14196,"name":"smithi142.nlkoaq","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.99:8443/","prometheus":"http://172.21.15.99: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.99:0","nonce":3872474038}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.99:0","nonce":1738654716}]}]} 2024-01-27T23:30:26.923 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-01-27T23:30:26.923 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-01-27T23:30:26.923 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd dump --format=json 2024-01-27T23:30:28.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: cephadm 2024-01-27T23:30:26.898889+0000 mgr.smithi099.hzjdah (mgr.14182) 115 : cephadm [INF] Detected new or changed devices on smithi142 2024-01-27T23:30:28.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: audit 2024-01-27T23:30:26.909127+0000 mon.smithi099 (mon.0) 541 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:28.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: cluster 2024-01-27T23:30:27.180613+0000 mgr.smithi099.hzjdah (mgr.14182) 116 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:28.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: audit 2024-01-27T23:30:27.195880+0000 mon.smithi099 (mon.0) 542 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:28.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: audit 2024-01-27T23:30:27.197580+0000 mon.smithi099 (mon.0) 543 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:28.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: audit 2024-01-27T23:30:27.199148+0000 mon.smithi099 (mon.0) 544 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:28.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: audit 2024-01-27T23:30:27.200392+0000 mon.smithi099 (mon.0) 545 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:28.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: cephadm 2024-01-27T23:30:27.201302+0000 mgr.smithi099.hzjdah (mgr.14182) 117 : cephadm [INF] Adjusting osd_memory_target on smithi142 to 3785M 2024-01-27T23:30:28.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: audit 2024-01-27T23:30:27.207111+0000 mon.smithi099 (mon.0) 546 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:28.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: cephadm 2024-01-27T23:30:27.672457+0000 mgr.smithi099.hzjdah (mgr.14182) 118 : cephadm [INF] Detected new or changed devices on smithi099 2024-01-27T23:30:28.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:27 smithi142 bash[20347]: audit 2024-01-27T23:30:27.683970+0000 mon.smithi099 (mon.0) 547 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:28.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: cephadm 2024-01-27T23:30:26.898889+0000 mgr.smithi099.hzjdah (mgr.14182) 115 : cephadm [INF] Detected new or changed devices on smithi142 2024-01-27T23:30:28.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: audit 2024-01-27T23:30:26.909127+0000 mon.smithi099 (mon.0) 541 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:28.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: cluster 2024-01-27T23:30:27.180613+0000 mgr.smithi099.hzjdah (mgr.14182) 116 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:28.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: audit 2024-01-27T23:30:27.195880+0000 mon.smithi099 (mon.0) 542 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:28.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: audit 2024-01-27T23:30:27.197580+0000 mon.smithi099 (mon.0) 543 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:28.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: audit 2024-01-27T23:30:27.199148+0000 mon.smithi099 (mon.0) 544 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:28.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: audit 2024-01-27T23:30:27.200392+0000 mon.smithi099 (mon.0) 545 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:28.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: cephadm 2024-01-27T23:30:27.201302+0000 mgr.smithi099.hzjdah (mgr.14182) 117 : cephadm [INF] Adjusting osd_memory_target on smithi142 to 3785M 2024-01-27T23:30:28.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: audit 2024-01-27T23:30:27.207111+0000 mon.smithi099 (mon.0) 546 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:28.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: cephadm 2024-01-27T23:30:27.672457+0000 mgr.smithi099.hzjdah (mgr.14182) 118 : cephadm [INF] Detected new or changed devices on smithi099 2024-01-27T23:30:28.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:27 smithi099 bash[16328]: audit 2024-01-27T23:30:27.683970+0000 mon.smithi099 (mon.0) 547 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:29.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:27.983622+0000 mon.smithi099 (mon.0) 548 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:29.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:27.986188+0000 mon.smithi099 (mon.0) 549 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:29.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:27.987590+0000 mon.smithi099 (mon.0) 550 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:29.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:27.988948+0000 mon.smithi099 (mon.0) 551 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:27.990294+0000 mon.smithi099 (mon.0) 552 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: cephadm 2024-01-27T23:30:27.991634+0000 mgr.smithi099.hzjdah (mgr.14182) 119 : cephadm [INF] Adjusting osd_memory_target on smithi099 to 3529M 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:27.999158+0000 mon.smithi099 (mon.0) 553 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:28.000646+0000 mon.smithi099 (mon.0) 554 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:28.001815+0000 mon.smithi099 (mon.0) 555 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:28.008875+0000 mon.smithi099 (mon.0) 556 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:28.018097+0000 mon.smithi099 (mon.0) 557 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:28.023185+0000 mon.smithi099 (mon.0) 558 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:28.025753+0000 mon.smithi099 (mon.0) 559 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:28.026274+0000 mon.smithi099 (mon.0) 560 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:29.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:28 smithi142 bash[20347]: audit 2024-01-27T23:30:28.027336+0000 mon.smithi099 (mon.0) 561 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:29.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:27.983622+0000 mon.smithi099 (mon.0) 548 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:29.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:27.986188+0000 mon.smithi099 (mon.0) 549 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:29.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:27.987590+0000 mon.smithi099 (mon.0) 550 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:29.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:27.988948+0000 mon.smithi099 (mon.0) 551 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:29.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:27.990294+0000 mon.smithi099 (mon.0) 552 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:30:29.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: cephadm 2024-01-27T23:30:27.991634+0000 mgr.smithi099.hzjdah (mgr.14182) 119 : cephadm [INF] Adjusting osd_memory_target on smithi099 to 3529M 2024-01-27T23:30:29.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:27.999158+0000 mon.smithi099 (mon.0) 553 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:29.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:28.000646+0000 mon.smithi099 (mon.0) 554 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:29.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:28.001815+0000 mon.smithi099 (mon.0) 555 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:30:29.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:28.008875+0000 mon.smithi099 (mon.0) 556 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:29.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:28.018097+0000 mon.smithi099 (mon.0) 557 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:30:29.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:28.023185+0000 mon.smithi099 (mon.0) 558 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:30:29.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:28.025753+0000 mon.smithi099 (mon.0) 559 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:30:29.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:28.026274+0000 mon.smithi099 (mon.0) 560 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:29.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:28 smithi099 bash[16328]: audit 2024-01-27T23:30:28.027336+0000 mon.smithi099 (mon.0) 561 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:30:30.296 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:29 smithi142 bash[20347]: cluster 2024-01-27T23:30:29.181232+0000 mgr.smithi099.hzjdah (mgr.14182) 120 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:30.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:29 smithi099 bash[16328]: cluster 2024-01-27T23:30:29.181232+0000 mgr.smithi099.hzjdah (mgr.14182) 120 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:31.754 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:30:32.546 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:32 smithi142 bash[20347]: cluster 2024-01-27T23:30:31.181806+0000 mgr.smithi099.hzjdah (mgr.14182) 121 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:32.576 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:32 smithi099 bash[16328]: cluster 2024-01-27T23:30:31.181806+0000 mgr.smithi099.hzjdah (mgr.14182) 121 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:34.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:34 smithi142 bash[20347]: cluster 2024-01-27T23:30:33.182437+0000 mgr.smithi099.hzjdah (mgr.14182) 122 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:34 smithi099 bash[16328]: cluster 2024-01-27T23:30:33.182437+0000 mgr.smithi099.hzjdah (mgr.14182) 122 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:36.018 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:30:36.018 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":39,"fsid":"54223e96-bd6b-11ee-95b2-87774f69a715","created":"2024-01-27T23:25:51.974654+0000","modified":"2024-01-27T23:29:48.590291+0000","last_up_change":"2024-01-27T23:29:46.567408+0000","last_in_change":"2024-01-27T23:28:56.243957+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-01-27T23:29:27.911656+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"edc8969a-03b9-4db6-858f-9c89bdad6fc1","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6800","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6801","nonce":2143864733}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6802","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6803","nonce":2143864733}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6806","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6807","nonce":2143864733}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6804","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6805","nonce":2143864733}]},"public_addr":"172.21.15.142:6801/2143864733","cluster_addr":"172.21.15.142:6803/2143864733","heartbeat_back_addr":"172.21.15.142:6807/2143864733","heartbeat_front_addr":"172.21.15.142:6805/2143864733","state":["exists","up"]},{"osd":1,"uuid":"7ed92ba7-eb2c-4365-9fb2-b883e5bcbf10","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":29,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6802","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6803","nonce":3831341837}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6804","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6805","nonce":3831341837}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6808","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6809","nonce":3831341837}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6806","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6807","nonce":3831341837}]},"public_addr":"172.21.15.99:6803/3831341837","cluster_addr":"172.21.15.99:6805/3831341837","heartbeat_back_addr":"172.21.15.99:6809/3831341837","heartbeat_front_addr":"172.21.15.99:6807/3831341837","state":["exists","up"]},{"osd":2,"uuid":"57a5015b-a452-4afb-b008-75265f9bf937","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6808","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6809","nonce":2474935723}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6810","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6811","nonce":2474935723}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6814","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6815","nonce":2474935723}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6812","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6813","nonce":2474935723}]},"public_addr":"172.21.15.142:6809/2474935723","cluster_addr":"172.21.15.142:6811/2474935723","heartbeat_back_addr":"172.21.15.142:6815/2474935723","heartbeat_front_addr":"172.21.15.142:6813/2474935723","state":["exists","up"]},{"osd":3,"uuid":"6a23d77d-52f8-4025-a345-50d27d6a1555","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6810","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6811","nonce":743344191}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6812","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6813","nonce":743344191}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6816","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6817","nonce":743344191}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6814","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6815","nonce":743344191}]},"public_addr":"172.21.15.99:6811/743344191","cluster_addr":"172.21.15.99:6813/743344191","heartbeat_back_addr":"172.21.15.99:6817/743344191","heartbeat_front_addr":"172.21.15.99:6815/743344191","state":["exists","up"]},{"osd":4,"uuid":"68a8340a-d72f-4888-8118-e3653b0e9cf6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6816","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6817","nonce":3262620398}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6818","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6819","nonce":3262620398}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6822","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6823","nonce":3262620398}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6820","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6821","nonce":3262620398}]},"public_addr":"172.21.15.142:6817/3262620398","cluster_addr":"172.21.15.142:6819/3262620398","heartbeat_back_addr":"172.21.15.142:6823/3262620398","heartbeat_front_addr":"172.21.15.142:6821/3262620398","state":["exists","up"]},{"osd":5,"uuid":"9d3293da-10c1-486d-b04d-4234b095c68f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6818","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6819","nonce":3033877278}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6820","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6821","nonce":3033877278}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6824","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6825","nonce":3033877278}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6822","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6823","nonce":3033877278}]},"public_addr":"172.21.15.99:6819/3033877278","cluster_addr":"172.21.15.99:6821/3033877278","heartbeat_back_addr":"172.21.15.99:6825/3033877278","heartbeat_front_addr":"172.21.15.99:6823/3033877278","state":["exists","up"]},{"osd":6,"uuid":"b371799d-60d7-4b28-9ae4-cdee2ccfd590","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6824","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6825","nonce":2303565403}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6826","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6827","nonce":2303565403}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6830","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6831","nonce":2303565403}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6828","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6829","nonce":2303565403}]},"public_addr":"172.21.15.142:6825/2303565403","cluster_addr":"172.21.15.142:6827/2303565403","heartbeat_back_addr":"172.21.15.142:6831/2303565403","heartbeat_front_addr":"172.21.15.142:6829/2303565403","state":["exists","up"]},{"osd":7,"uuid":"03bfd01d-bba8-4cc5-81f5-d1b8c939a6c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6826","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6827","nonce":1456763956}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6828","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6829","nonce":1456763956}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6832","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6833","nonce":1456763956}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6830","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6831","nonce":1456763956}]},"public_addr":"172.21.15.99:6827/1456763956","cluster_addr":"172.21.15.99:6829/1456763956","heartbeat_back_addr":"172.21.15.99:6833/1456763956","heartbeat_front_addr":"172.21.15.99:6831/1456763956","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:19.640867+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:25.842216+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:24.560915+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:32.717589+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:30.398703+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:39.657552+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:34.228050+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:45.270399+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.99:0/296875226":"2024-01-28T23:27:55.135191+0000","172.21.15.99:0/366188701":"2024-01-28T23:27:55.135191+0000","172.21.15.99:6801/3385683013":"2024-01-28T23:27:55.135191+0000","172.21.15.99:6800/3385683013":"2024-01-28T23:27:55.135191+0000","172.21.15.99:6801/2828546026":"2024-01-28T23:26:58.975565+0000","172.21.15.99:6800/2828546026":"2024-01-28T23:26:58.975565+0000","172.21.15.99:0/2874557606":"2024-01-28T23:26:58.975565+0000","172.21.15.99:0/4157447687":"2024-01-28T23:26:58.975565+0000","172.21.15.99:0/3918582191":"2024-01-28T23:26:19.447450+0000","172.21.15.99:6800/3784735487":"2024-01-28T23:26:19.447450+0000","172.21.15.99:6801/3784735487":"2024-01-28T23:26:19.447450+0000","172.21.15.99:0/1753887979":"2024-01-28T23:26:19.447450+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-01-27T23:30:36.733 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:36 smithi099 bash[16328]: cluster 2024-01-27T23:30:35.183064+0000 mgr.smithi099.hzjdah (mgr.14182) 123 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:36.733 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:36 smithi099 bash[16328]: audit 2024-01-27T23:30:36.024114+0000 mon.smithi099 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.99:0/1395286364' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:30:36.752 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-01-27T23:30:36.753 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd dump --format=json 2024-01-27T23:30:36.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:36 smithi142 bash[20347]: cluster 2024-01-27T23:30:35.183064+0000 mgr.smithi099.hzjdah (mgr.14182) 123 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:36.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:36 smithi142 bash[20347]: audit 2024-01-27T23:30:36.024114+0000 mon.smithi099 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.99:0/1395286364' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:30:38.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:38 smithi142 bash[20347]: cluster 2024-01-27T23:30:37.183689+0000 mgr.smithi099.hzjdah (mgr.14182) 124 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:38.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:38 smithi099 bash[16328]: cluster 2024-01-27T23:30:37.183689+0000 mgr.smithi099.hzjdah (mgr.14182) 124 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:40.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:40 smithi142 bash[20347]: cluster 2024-01-27T23:30:39.184278+0000 mgr.smithi099.hzjdah (mgr.14182) 125 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:40.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:40 smithi099 bash[16328]: cluster 2024-01-27T23:30:39.184278+0000 mgr.smithi099.hzjdah (mgr.14182) 125 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:42.068 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:30:42.791 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:42 smithi142 bash[20347]: cluster 2024-01-27T23:30:41.184842+0000 mgr.smithi099.hzjdah (mgr.14182) 126 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:42.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:42 smithi099 bash[16328]: cluster 2024-01-27T23:30:41.184842+0000 mgr.smithi099.hzjdah (mgr.14182) 126 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:44.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:44 smithi142 bash[20347]: cluster 2024-01-27T23:30:43.185514+0000 mgr.smithi099.hzjdah (mgr.14182) 127 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:44.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:44 smithi099 bash[16328]: cluster 2024-01-27T23:30:43.185514+0000 mgr.smithi099.hzjdah (mgr.14182) 127 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:46.172 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:30:46.172 INFO:teuthology.orchestra.run.smithi099.stdout:{"epoch":39,"fsid":"54223e96-bd6b-11ee-95b2-87774f69a715","created":"2024-01-27T23:25:51.974654+0000","modified":"2024-01-27T23:29:48.590291+0000","last_up_change":"2024-01-27T23:29:46.567408+0000","last_in_change":"2024-01-27T23:28:56.243957+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-01-27T23:29:27.911656+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"edc8969a-03b9-4db6-858f-9c89bdad6fc1","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6800","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6801","nonce":2143864733}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6802","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6803","nonce":2143864733}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6806","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6807","nonce":2143864733}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6804","nonce":2143864733},{"type":"v1","addr":"172.21.15.142:6805","nonce":2143864733}]},"public_addr":"172.21.15.142:6801/2143864733","cluster_addr":"172.21.15.142:6803/2143864733","heartbeat_back_addr":"172.21.15.142:6807/2143864733","heartbeat_front_addr":"172.21.15.142:6805/2143864733","state":["exists","up"]},{"osd":1,"uuid":"7ed92ba7-eb2c-4365-9fb2-b883e5bcbf10","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":29,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6802","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6803","nonce":3831341837}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6804","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6805","nonce":3831341837}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6808","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6809","nonce":3831341837}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6806","nonce":3831341837},{"type":"v1","addr":"172.21.15.99:6807","nonce":3831341837}]},"public_addr":"172.21.15.99:6803/3831341837","cluster_addr":"172.21.15.99:6805/3831341837","heartbeat_back_addr":"172.21.15.99:6809/3831341837","heartbeat_front_addr":"172.21.15.99:6807/3831341837","state":["exists","up"]},{"osd":2,"uuid":"57a5015b-a452-4afb-b008-75265f9bf937","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6808","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6809","nonce":2474935723}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6810","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6811","nonce":2474935723}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6814","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6815","nonce":2474935723}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6812","nonce":2474935723},{"type":"v1","addr":"172.21.15.142:6813","nonce":2474935723}]},"public_addr":"172.21.15.142:6809/2474935723","cluster_addr":"172.21.15.142:6811/2474935723","heartbeat_back_addr":"172.21.15.142:6815/2474935723","heartbeat_front_addr":"172.21.15.142:6813/2474935723","state":["exists","up"]},{"osd":3,"uuid":"6a23d77d-52f8-4025-a345-50d27d6a1555","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6810","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6811","nonce":743344191}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6812","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6813","nonce":743344191}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6816","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6817","nonce":743344191}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6814","nonce":743344191},{"type":"v1","addr":"172.21.15.99:6815","nonce":743344191}]},"public_addr":"172.21.15.99:6811/743344191","cluster_addr":"172.21.15.99:6813/743344191","heartbeat_back_addr":"172.21.15.99:6817/743344191","heartbeat_front_addr":"172.21.15.99:6815/743344191","state":["exists","up"]},{"osd":4,"uuid":"68a8340a-d72f-4888-8118-e3653b0e9cf6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6816","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6817","nonce":3262620398}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6818","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6819","nonce":3262620398}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6822","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6823","nonce":3262620398}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6820","nonce":3262620398},{"type":"v1","addr":"172.21.15.142:6821","nonce":3262620398}]},"public_addr":"172.21.15.142:6817/3262620398","cluster_addr":"172.21.15.142:6819/3262620398","heartbeat_back_addr":"172.21.15.142:6823/3262620398","heartbeat_front_addr":"172.21.15.142:6821/3262620398","state":["exists","up"]},{"osd":5,"uuid":"9d3293da-10c1-486d-b04d-4234b095c68f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6818","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6819","nonce":3033877278}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6820","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6821","nonce":3033877278}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6824","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6825","nonce":3033877278}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6822","nonce":3033877278},{"type":"v1","addr":"172.21.15.99:6823","nonce":3033877278}]},"public_addr":"172.21.15.99:6819/3033877278","cluster_addr":"172.21.15.99:6821/3033877278","heartbeat_back_addr":"172.21.15.99:6825/3033877278","heartbeat_front_addr":"172.21.15.99:6823/3033877278","state":["exists","up"]},{"osd":6,"uuid":"b371799d-60d7-4b28-9ae4-cdee2ccfd590","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6824","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6825","nonce":2303565403}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6826","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6827","nonce":2303565403}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6830","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6831","nonce":2303565403}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6828","nonce":2303565403},{"type":"v1","addr":"172.21.15.142:6829","nonce":2303565403}]},"public_addr":"172.21.15.142:6825/2303565403","cluster_addr":"172.21.15.142:6827/2303565403","heartbeat_back_addr":"172.21.15.142:6831/2303565403","heartbeat_front_addr":"172.21.15.142:6829/2303565403","state":["exists","up"]},{"osd":7,"uuid":"03bfd01d-bba8-4cc5-81f5-d1b8c939a6c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6826","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6827","nonce":1456763956}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6828","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6829","nonce":1456763956}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6832","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6833","nonce":1456763956}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.99:6830","nonce":1456763956},{"type":"v1","addr":"172.21.15.99:6831","nonce":1456763956}]},"public_addr":"172.21.15.99:6827/1456763956","cluster_addr":"172.21.15.99:6829/1456763956","heartbeat_back_addr":"172.21.15.99:6833/1456763956","heartbeat_front_addr":"172.21.15.99:6831/1456763956","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:19.640867+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:25.842216+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:24.560915+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:32.717589+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:30.398703+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:39.657552+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:34.228050+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-01-27T23:29:45.270399+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.99:0/296875226":"2024-01-28T23:27:55.135191+0000","172.21.15.99:0/366188701":"2024-01-28T23:27:55.135191+0000","172.21.15.99:6801/3385683013":"2024-01-28T23:27:55.135191+0000","172.21.15.99:6800/3385683013":"2024-01-28T23:27:55.135191+0000","172.21.15.99:6801/2828546026":"2024-01-28T23:26:58.975565+0000","172.21.15.99:6800/2828546026":"2024-01-28T23:26:58.975565+0000","172.21.15.99:0/2874557606":"2024-01-28T23:26:58.975565+0000","172.21.15.99:0/4157447687":"2024-01-28T23:26:58.975565+0000","172.21.15.99:0/3918582191":"2024-01-28T23:26:19.447450+0000","172.21.15.99:6800/3784735487":"2024-01-28T23:26:19.447450+0000","172.21.15.99:6801/3784735487":"2024-01-28T23:26:19.447450+0000","172.21.15.99:0/1753887979":"2024-01-28T23:26:19.447450+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-01-27T23:30:46.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:46 smithi099 bash[16328]: cluster 2024-01-27T23:30:45.186067+0000 mgr.smithi099.hzjdah (mgr.14182) 128 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:46.577 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:46 smithi099 bash[16328]: audit 2024-01-27T23:30:46.176894+0000 mon.smithi099 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.99:0/1431425368' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:30:46.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:46 smithi142 bash[20347]: cluster 2024-01-27T23:30:45.186067+0000 mgr.smithi099.hzjdah (mgr.14182) 128 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:46.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:46 smithi142 bash[20347]: audit 2024-01-27T23:30:46.176894+0000 mon.smithi099 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.99:0/1431425368' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:30:46.990 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-01-27T23:30:48.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:48 smithi142 bash[20347]: cluster 2024-01-27T23:30:47.186824+0000 mgr.smithi099.hzjdah (mgr.14182) 129 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:48.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:48 smithi099 bash[16328]: cluster 2024-01-27T23:30:47.186824+0000 mgr.smithi099.hzjdah (mgr.14182) 129 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:50.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:50 smithi142 bash[20347]: cluster 2024-01-27T23:30:49.187480+0000 mgr.smithi099.hzjdah (mgr.14182) 130 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:50.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:50 smithi099 bash[16328]: cluster 2024-01-27T23:30:49.187480+0000 mgr.smithi099.hzjdah (mgr.14182) 130 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:51.826 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:30:52.767 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:52 smithi099 bash[16328]: cluster 2024-01-27T23:30:51.188065+0000 mgr.smithi099.hzjdah (mgr.14182) 131 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:52.796 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:52 smithi142 bash[20347]: cluster 2024-01-27T23:30:51.188065+0000 mgr.smithi099.hzjdah (mgr.14182) 131 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:54.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:54 smithi099 bash[16328]: cluster 2024-01-27T23:30:53.188688+0000 mgr.smithi099.hzjdah (mgr.14182) 132 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:54.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:54 smithi099 bash[16328]: audit 2024-01-27T23:30:53.751467+0000 mon.smithi099 (mon.0) 564 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:55.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:54 smithi142 bash[20347]: cluster 2024-01-27T23:30:53.188688+0000 mgr.smithi099.hzjdah (mgr.14182) 132 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:55.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:54 smithi142 bash[20347]: audit 2024-01-27T23:30:53.751467+0000 mon.smithi099 (mon.0) 564 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:56.881 INFO:teuthology.orchestra.run.smithi099.stdout:68719476758 2024-01-27T23:30:56.881 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-01-27T23:30:57.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:56 smithi142 bash[20347]: cluster 2024-01-27T23:30:55.189250+0000 mgr.smithi099.hzjdah (mgr.14182) 133 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:57.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:56 smithi099 bash[16328]: cluster 2024-01-27T23:30:55.189250+0000 mgr.smithi099.hzjdah (mgr.14182) 133 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:59.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:58 smithi142 bash[20347]: cluster 2024-01-27T23:30:57.189843+0000 mgr.smithi099.hzjdah (mgr.14182) 134 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:59.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:58 smithi142 bash[20347]: audit 2024-01-27T23:30:58.153190+0000 mon.smithi099 (mon.0) 565 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:59.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:30:58 smithi142 bash[20347]: audit 2024-01-27T23:30:58.157234+0000 mon.smithi099 (mon.0) 566 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:30:59.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:58 smithi099 bash[16328]: cluster 2024-01-27T23:30:57.189843+0000 mgr.smithi099.hzjdah (mgr.14182) 134 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:30:59.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:58 smithi099 bash[16328]: audit 2024-01-27T23:30:58.153190+0000 mon.smithi099 (mon.0) 565 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:30:59.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:30:58 smithi099 bash[16328]: audit 2024-01-27T23:30:58.157234+0000 mon.smithi099 (mon.0) 566 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:31:01.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:00 smithi142 bash[20347]: cluster 2024-01-27T23:30:59.190422+0000 mgr.smithi099.hzjdah (mgr.14182) 135 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:01.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:00 smithi099 bash[16328]: cluster 2024-01-27T23:30:59.190422+0000 mgr.smithi099.hzjdah (mgr.14182) 135 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:01.737 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:31:02.905 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:02 smithi099 bash[16328]: cluster 2024-01-27T23:31:01.191043+0000 mgr.smithi099.hzjdah (mgr.14182) 136 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:03.046 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:02 smithi142 bash[20347]: cluster 2024-01-27T23:31:01.191043+0000 mgr.smithi099.hzjdah (mgr.14182) 136 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:05.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:04 smithi142 bash[20347]: cluster 2024-01-27T23:31:03.191570+0000 mgr.smithi099.hzjdah (mgr.14182) 137 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:05.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:04 smithi142 bash[20347]: audit 2024-01-27T23:31:04.014948+0000 mon.smithi099 (mon.0) 567 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:31:05.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:04 smithi142 bash[20347]: audit 2024-01-27T23:31:04.028765+0000 mon.smithi099 (mon.0) 568 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:31:05.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:04 smithi142 bash[20347]: audit 2024-01-27T23:31:04.030425+0000 mon.smithi099 (mon.0) 569 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:31:05.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:04 smithi142 bash[20347]: audit 2024-01-27T23:31:04.031552+0000 mon.smithi099 (mon.0) 570 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:31:05.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:04 smithi142 bash[20347]: audit 2024-01-27T23:31:04.040300+0000 mon.smithi099 (mon.0) 571 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:31:05.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:04 smithi142 bash[20347]: audit 2024-01-27T23:31:04.050171+0000 mon.smithi099 (mon.0) 572 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:31:05.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:04 smithi099 bash[16328]: cluster 2024-01-27T23:31:03.191570+0000 mgr.smithi099.hzjdah (mgr.14182) 137 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:05.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:04 smithi099 bash[16328]: audit 2024-01-27T23:31:04.014948+0000 mon.smithi099 (mon.0) 567 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:31:05.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:04 smithi099 bash[16328]: audit 2024-01-27T23:31:04.028765+0000 mon.smithi099 (mon.0) 568 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:31:05.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:04 smithi099 bash[16328]: audit 2024-01-27T23:31:04.030425+0000 mon.smithi099 (mon.0) 569 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:31:05.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:04 smithi099 bash[16328]: audit 2024-01-27T23:31:04.031552+0000 mon.smithi099 (mon.0) 570 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:31:05.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:04 smithi099 bash[16328]: audit 2024-01-27T23:31:04.040300+0000 mon.smithi099 (mon.0) 571 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:31:05.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:04 smithi099 bash[16328]: audit 2024-01-27T23:31:04.050171+0000 mon.smithi099 (mon.0) 572 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:31:05.200 INFO:teuthology.orchestra.run.smithi099.stdout:90194313239 2024-01-27T23:31:05.201 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-01-27T23:31:07.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:06 smithi142 bash[20347]: cluster 2024-01-27T23:31:05.192068+0000 mgr.smithi099.hzjdah (mgr.14182) 138 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:07.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:06 smithi099 bash[16328]: cluster 2024-01-27T23:31:05.192068+0000 mgr.smithi099.hzjdah (mgr.14182) 138 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:09.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:08 smithi142 bash[20347]: cluster 2024-01-27T23:31:07.192715+0000 mgr.smithi099.hzjdah (mgr.14182) 139 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:09.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:08 smithi099 bash[16328]: cluster 2024-01-27T23:31:07.192715+0000 mgr.smithi099.hzjdah (mgr.14182) 139 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:10.044 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:31:11.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:10 smithi142 bash[20347]: cluster 2024-01-27T23:31:09.193365+0000 mgr.smithi099.hzjdah (mgr.14182) 140 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:11.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:10 smithi099 bash[16328]: cluster 2024-01-27T23:31:09.193365+0000 mgr.smithi099.hzjdah (mgr.14182) 140 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:12.912 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:12 smithi099 bash[16328]: cluster 2024-01-27T23:31:11.194125+0000 mgr.smithi099.hzjdah (mgr.14182) 141 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:13.047 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:12 smithi142 bash[20347]: cluster 2024-01-27T23:31:11.194125+0000 mgr.smithi099.hzjdah (mgr.14182) 141 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:13.514 INFO:teuthology.orchestra.run.smithi099.stdout:85899345944 2024-01-27T23:31:13.515 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-01-27T23:31:15.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:14 smithi099 bash[16328]: cluster 2024-01-27T23:31:13.194760+0000 mgr.smithi099.hzjdah (mgr.14182) 142 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:15.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:14 smithi142 bash[20347]: cluster 2024-01-27T23:31:13.194760+0000 mgr.smithi099.hzjdah (mgr.14182) 142 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:17.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:16 smithi099 bash[16328]: cluster 2024-01-27T23:31:15.195332+0000 mgr.smithi099.hzjdah (mgr.14182) 143 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:17.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:16 smithi142 bash[20347]: cluster 2024-01-27T23:31:15.195332+0000 mgr.smithi099.hzjdah (mgr.14182) 143 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:18.348 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:31:19.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:18 smithi099 bash[16328]: cluster 2024-01-27T23:31:17.195966+0000 mgr.smithi099.hzjdah (mgr.14182) 144 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:19.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:18 smithi142 bash[20347]: cluster 2024-01-27T23:31:17.195966+0000 mgr.smithi099.hzjdah (mgr.14182) 144 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:21.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:20 smithi099 bash[16328]: cluster 2024-01-27T23:31:19.196513+0000 mgr.smithi099.hzjdah (mgr.14182) 145 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:21.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:20 smithi142 bash[20347]: cluster 2024-01-27T23:31:19.196513+0000 mgr.smithi099.hzjdah (mgr.14182) 145 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:21.692 INFO:teuthology.orchestra.run.smithi099.stdout:120259084311 2024-01-27T23:31:21.692 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-01-27T23:31:22.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:21 smithi099 bash[16328]: cluster 2024-01-27T23:31:21.197053+0000 mgr.smithi099.hzjdah (mgr.14182) 146 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:22.297 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:21 smithi142 bash[20347]: cluster 2024-01-27T23:31:21.197053+0000 mgr.smithi099.hzjdah (mgr.14182) 146 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:24.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:24 smithi142 bash[20347]: cluster 2024-01-27T23:31:23.197765+0000 mgr.smithi099.hzjdah (mgr.14182) 147 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:24.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:24 smithi099 bash[16328]: cluster 2024-01-27T23:31:23.197765+0000 mgr.smithi099.hzjdah (mgr.14182) 147 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:26.522 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:31:26.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:26 smithi142 bash[20347]: cluster 2024-01-27T23:31:25.198375+0000 mgr.smithi099.hzjdah (mgr.14182) 148 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:26.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:26 smithi099 bash[16328]: cluster 2024-01-27T23:31:25.198375+0000 mgr.smithi099.hzjdah (mgr.14182) 148 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:28.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:28 smithi142 bash[20347]: cluster 2024-01-27T23:31:27.198973+0000 mgr.smithi099.hzjdah (mgr.14182) 149 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:28.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:28 smithi099 bash[16328]: cluster 2024-01-27T23:31:27.198973+0000 mgr.smithi099.hzjdah (mgr.14182) 149 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:30.072 INFO:teuthology.orchestra.run.smithi099.stdout:107374182425 2024-01-27T23:31:30.073 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-01-27T23:31:30.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:30 smithi142 bash[20347]: cluster 2024-01-27T23:31:29.199597+0000 mgr.smithi099.hzjdah (mgr.14182) 150 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:30.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:30 smithi099 bash[16328]: cluster 2024-01-27T23:31:29.199597+0000 mgr.smithi099.hzjdah (mgr.14182) 150 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:32.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:32 smithi142 bash[20347]: cluster 2024-01-27T23:31:31.200219+0000 mgr.smithi099.hzjdah (mgr.14182) 151 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:32.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:32 smithi099 bash[16328]: cluster 2024-01-27T23:31:31.200219+0000 mgr.smithi099.hzjdah (mgr.14182) 151 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:34.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:34 smithi142 bash[20347]: cluster 2024-01-27T23:31:33.200810+0000 mgr.smithi099.hzjdah (mgr.14182) 152 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:34.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:34 smithi099 bash[16328]: cluster 2024-01-27T23:31:33.200810+0000 mgr.smithi099.hzjdah (mgr.14182) 152 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:34.909 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:31:36.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:36 smithi142 bash[20347]: cluster 2024-01-27T23:31:35.201397+0000 mgr.smithi099.hzjdah (mgr.14182) 153 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:36.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:36 smithi099 bash[16328]: cluster 2024-01-27T23:31:35.201397+0000 mgr.smithi099.hzjdah (mgr.14182) 153 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:38.461 INFO:teuthology.orchestra.run.smithi099.stdout:141733920795 2024-01-27T23:31:38.461 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-01-27T23:31:38.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:38 smithi142 bash[20347]: cluster 2024-01-27T23:31:37.201969+0000 mgr.smithi099.hzjdah (mgr.14182) 154 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:38.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:38 smithi099 bash[16328]: cluster 2024-01-27T23:31:37.201969+0000 mgr.smithi099.hzjdah (mgr.14182) 154 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:40.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:40 smithi142 bash[20347]: cluster 2024-01-27T23:31:39.202579+0000 mgr.smithi099.hzjdah (mgr.14182) 155 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:40.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:40 smithi099 bash[16328]: cluster 2024-01-27T23:31:39.202579+0000 mgr.smithi099.hzjdah (mgr.14182) 155 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:42.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:42 smithi142 bash[20347]: cluster 2024-01-27T23:31:41.203177+0000 mgr.smithi099.hzjdah (mgr.14182) 156 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:42.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:42 smithi099 bash[16328]: cluster 2024-01-27T23:31:41.203177+0000 mgr.smithi099.hzjdah (mgr.14182) 156 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:43.294 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:31:44.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:44 smithi142 bash[20347]: cluster 2024-01-27T23:31:43.203780+0000 mgr.smithi099.hzjdah (mgr.14182) 157 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:44.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:44 smithi099 bash[16328]: cluster 2024-01-27T23:31:43.203780+0000 mgr.smithi099.hzjdah (mgr.14182) 157 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:46.703 INFO:teuthology.orchestra.run.smithi099.stdout:124554051613 2024-01-27T23:31:46.703 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-01-27T23:31:46.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:46 smithi142 bash[20347]: cluster 2024-01-27T23:31:45.204354+0000 mgr.smithi099.hzjdah (mgr.14182) 158 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:46.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:46 smithi099 bash[16328]: cluster 2024-01-27T23:31:45.204354+0000 mgr.smithi099.hzjdah (mgr.14182) 158 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:48.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:48 smithi142 bash[20347]: cluster 2024-01-27T23:31:47.204969+0000 mgr.smithi099.hzjdah (mgr.14182) 159 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:48.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:48 smithi099 bash[16328]: cluster 2024-01-27T23:31:47.204969+0000 mgr.smithi099.hzjdah (mgr.14182) 159 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:50.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:50 smithi142 bash[20347]: cluster 2024-01-27T23:31:49.205601+0000 mgr.smithi099.hzjdah (mgr.14182) 160 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:50.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:50 smithi099 bash[16328]: cluster 2024-01-27T23:31:49.205601+0000 mgr.smithi099.hzjdah (mgr.14182) 160 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:51.546 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:31:52.724 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:52 smithi099 bash[16328]: cluster 2024-01-27T23:31:51.206192+0000 mgr.smithi099.hzjdah (mgr.14182) 161 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:52.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:52 smithi142 bash[20347]: cluster 2024-01-27T23:31:51.206192+0000 mgr.smithi099.hzjdah (mgr.14182) 161 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:54.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:54 smithi142 bash[20347]: cluster 2024-01-27T23:31:53.206807+0000 mgr.smithi099.hzjdah (mgr.14182) 162 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:54.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:54 smithi099 bash[16328]: cluster 2024-01-27T23:31:53.206807+0000 mgr.smithi099.hzjdah (mgr.14182) 162 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:55.027 INFO:teuthology.orchestra.run.smithi099.stdout:158913789979 2024-01-27T23:31:55.027 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-01-27T23:31:56.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:56 smithi142 bash[20347]: cluster 2024-01-27T23:31:55.207379+0000 mgr.smithi099.hzjdah (mgr.14182) 163 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:56.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:56 smithi099 bash[16328]: cluster 2024-01-27T23:31:55.207379+0000 mgr.smithi099.hzjdah (mgr.14182) 163 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:58.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:31:58 smithi142 bash[20347]: cluster 2024-01-27T23:31:57.207962+0000 mgr.smithi099.hzjdah (mgr.14182) 164 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:58.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:31:58 smithi099 bash[16328]: cluster 2024-01-27T23:31:57.207962+0000 mgr.smithi099.hzjdah (mgr.14182) 164 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:31:59.861 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:32:00.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:00 smithi142 bash[20347]: cluster 2024-01-27T23:31:59.208527+0000 mgr.smithi099.hzjdah (mgr.14182) 165 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:00.810 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:00 smithi099 bash[16328]: cluster 2024-01-27T23:31:59.208527+0000 mgr.smithi099.hzjdah (mgr.14182) 165 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:02.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:02 smithi142 bash[20347]: cluster 2024-01-27T23:32:01.209029+0000 mgr.smithi099.hzjdah (mgr.14182) 166 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:02.820 INFO:teuthology.orchestra.run.smithi099.stdout:68719476771 2024-01-27T23:32:02.827 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:02 smithi099 bash[16328]: cluster 2024-01-27T23:32:01.209029+0000 mgr.smithi099.hzjdah (mgr.14182) 166 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:03.447 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476758 got 68719476771 for osd.0 2024-01-27T23:32:03.447 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-01-27T23:32:03.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:03 smithi142 bash[20347]: audit 2024-01-27T23:32:02.826696+0000 mon.smithi099 (mon.0) 573 : audit [DBG] from='client.? 172.21.15.99:0/785216465' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-01-27T23:32:03.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:03 smithi099 bash[16328]: audit 2024-01-27T23:32:02.826696+0000 mon.smithi099 (mon.0) 573 : audit [DBG] from='client.? 172.21.15.99:0/785216465' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-01-27T23:32:04.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:04 smithi142 bash[20347]: cluster 2024-01-27T23:32:03.209677+0000 mgr.smithi099.hzjdah (mgr.14182) 167 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:04.798 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:04 smithi142 bash[20347]: audit 2024-01-27T23:32:04.061076+0000 mon.smithi099 (mon.0) 574 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:32:04.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:04 smithi099 bash[16328]: cluster 2024-01-27T23:32:03.209677+0000 mgr.smithi099.hzjdah (mgr.14182) 167 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:04.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:04 smithi099 bash[16328]: audit 2024-01-27T23:32:04.061076+0000 mon.smithi099 (mon.0) 574 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:32:06.798 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:06 smithi142 bash[20347]: cluster 2024-01-27T23:32:05.210255+0000 mgr.smithi099.hzjdah (mgr.14182) 168 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:06.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:06 smithi099 bash[16328]: cluster 2024-01-27T23:32:05.210255+0000 mgr.smithi099.hzjdah (mgr.14182) 168 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:08.290 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:32:08.797 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:08 smithi142 bash[20347]: cluster 2024-01-27T23:32:07.210897+0000 mgr.smithi099.hzjdah (mgr.14182) 169 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:08.905 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:08 smithi099 bash[16328]: cluster 2024-01-27T23:32:07.210897+0000 mgr.smithi099.hzjdah (mgr.14182) 169 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:11.019 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:10 smithi099 bash[16328]: cluster 2024-01-27T23:32:09.211581+0000 mgr.smithi099.hzjdah (mgr.14182) 170 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:11.020 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:10 smithi099 bash[16328]: audit 2024-01-27T23:32:09.673792+0000 mon.smithi099 (mon.0) 575 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:32:11.020 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:10 smithi099 bash[16328]: audit 2024-01-27T23:32:09.923318+0000 mon.smithi099 (mon.0) 576 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:32:11.020 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:10 smithi099 bash[16328]: audit 2024-01-27T23:32:10.219583+0000 mon.smithi099 (mon.0) 577 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:32:11.020 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:10 smithi099 bash[16328]: audit 2024-01-27T23:32:10.221307+0000 mon.smithi099 (mon.0) 578 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:32:11.020 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:10 smithi099 bash[16328]: audit 2024-01-27T23:32:10.232599+0000 mon.smithi099 (mon.0) 579 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:32:11.020 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:10 smithi099 bash[16328]: audit 2024-01-27T23:32:10.238681+0000 mon.smithi099 (mon.0) 580 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:32:11.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:10 smithi142 bash[20347]: cluster 2024-01-27T23:32:09.211581+0000 mgr.smithi099.hzjdah (mgr.14182) 170 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:11.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:10 smithi142 bash[20347]: audit 2024-01-27T23:32:09.673792+0000 mon.smithi099 (mon.0) 575 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:32:11.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:10 smithi142 bash[20347]: audit 2024-01-27T23:32:09.923318+0000 mon.smithi099 (mon.0) 576 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:32:11.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:10 smithi142 bash[20347]: audit 2024-01-27T23:32:10.219583+0000 mon.smithi099 (mon.0) 577 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:32:11.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:10 smithi142 bash[20347]: audit 2024-01-27T23:32:10.221307+0000 mon.smithi099 (mon.0) 578 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:32:11.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:10 smithi142 bash[20347]: audit 2024-01-27T23:32:10.232599+0000 mon.smithi099 (mon.0) 579 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:32:11.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:10 smithi142 bash[20347]: audit 2024-01-27T23:32:10.238681+0000 mon.smithi099 (mon.0) 580 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:32:11.466 INFO:teuthology.orchestra.run.smithi099.stdout:90194313252 2024-01-27T23:32:11.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:11 smithi099 bash[16328]: audit 2024-01-27T23:32:11.472172+0000 mon.smithi099 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.99:0/1456999568' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-01-27T23:32:12.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:11 smithi142 bash[20347]: audit 2024-01-27T23:32:11.472172+0000 mon.smithi099 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.99:0/1456999568' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-01-27T23:32:12.092 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313239 got 90194313252 for osd.1 2024-01-27T23:32:12.092 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-01-27T23:32:13.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:12 smithi142 bash[20347]: cluster 2024-01-27T23:32:11.212131+0000 mgr.smithi099.hzjdah (mgr.14182) 171 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:13.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:12 smithi099 bash[16328]: cluster 2024-01-27T23:32:11.212131+0000 mgr.smithi099.hzjdah (mgr.14182) 171 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:15.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:14 smithi142 bash[20347]: cluster 2024-01-27T23:32:13.212766+0000 mgr.smithi099.hzjdah (mgr.14182) 172 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:15.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:14 smithi099 bash[16328]: cluster 2024-01-27T23:32:13.212766+0000 mgr.smithi099.hzjdah (mgr.14182) 172 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:16.937 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:32:17.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:16 smithi142 bash[20347]: cluster 2024-01-27T23:32:15.213346+0000 mgr.smithi099.hzjdah (mgr.14182) 173 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:17.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:16 smithi099 bash[16328]: cluster 2024-01-27T23:32:15.213346+0000 mgr.smithi099.hzjdah (mgr.14182) 173 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:19.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:18 smithi142 bash[20347]: cluster 2024-01-27T23:32:17.213976+0000 mgr.smithi099.hzjdah (mgr.14182) 174 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:19.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:18 smithi099 bash[16328]: cluster 2024-01-27T23:32:17.213976+0000 mgr.smithi099.hzjdah (mgr.14182) 174 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:20.040 INFO:teuthology.orchestra.run.smithi099.stdout:85899345957 2024-01-27T23:32:20.699 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345944 got 85899345957 for osd.2 2024-01-27T23:32:20.700 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-01-27T23:32:21.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:20 smithi142 bash[20347]: cluster 2024-01-27T23:32:19.214593+0000 mgr.smithi099.hzjdah (mgr.14182) 175 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:21.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:20 smithi142 bash[20347]: audit 2024-01-27T23:32:20.043989+0000 mon.smithi099 (mon.0) 582 : audit [DBG] from='client.? 172.21.15.99:0/2907547592' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-01-27T23:32:21.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:20 smithi099 bash[16328]: cluster 2024-01-27T23:32:19.214593+0000 mgr.smithi099.hzjdah (mgr.14182) 175 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:21.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:20 smithi099 bash[16328]: audit 2024-01-27T23:32:20.043989+0000 mon.smithi099 (mon.0) 582 : audit [DBG] from='client.? 172.21.15.99:0/2907547592' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-01-27T23:32:23.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:22 smithi142 bash[20347]: cluster 2024-01-27T23:32:21.215177+0000 mgr.smithi099.hzjdah (mgr.14182) 176 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:23.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:22 smithi099 bash[16328]: cluster 2024-01-27T23:32:21.215177+0000 mgr.smithi099.hzjdah (mgr.14182) 176 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:25.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:24 smithi142 bash[20347]: cluster 2024-01-27T23:32:23.215780+0000 mgr.smithi099.hzjdah (mgr.14182) 177 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:25.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:24 smithi099 bash[16328]: cluster 2024-01-27T23:32:23.215780+0000 mgr.smithi099.hzjdah (mgr.14182) 177 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:25.551 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:32:27.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:26 smithi142 bash[20347]: cluster 2024-01-27T23:32:25.216368+0000 mgr.smithi099.hzjdah (mgr.14182) 178 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:27.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:26 smithi099 bash[16328]: cluster 2024-01-27T23:32:25.216368+0000 mgr.smithi099.hzjdah (mgr.14182) 178 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:28.495 INFO:teuthology.orchestra.run.smithi099.stdout:120259084324 2024-01-27T23:32:28.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:28 smithi099 bash[16328]: cluster 2024-01-27T23:32:27.217014+0000 mgr.smithi099.hzjdah (mgr.14182) 179 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:28.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:28 smithi099 bash[16328]: audit 2024-01-27T23:32:28.500986+0000 mon.smithi099 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.99:0/3007601553' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-01-27T23:32:29.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:28 smithi142 bash[20347]: cluster 2024-01-27T23:32:27.217014+0000 mgr.smithi099.hzjdah (mgr.14182) 179 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:29.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:28 smithi142 bash[20347]: audit 2024-01-27T23:32:28.500986+0000 mon.smithi099 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.99:0/3007601553' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-01-27T23:32:29.177 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084311 got 120259084324 for osd.3 2024-01-27T23:32:29.177 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-01-27T23:32:31.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:30 smithi142 bash[20347]: cluster 2024-01-27T23:32:29.217561+0000 mgr.smithi099.hzjdah (mgr.14182) 180 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:31.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:30 smithi099 bash[16328]: cluster 2024-01-27T23:32:29.217561+0000 mgr.smithi099.hzjdah (mgr.14182) 180 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:33.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:32 smithi142 bash[20347]: cluster 2024-01-27T23:32:31.218104+0000 mgr.smithi099.hzjdah (mgr.14182) 181 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:33.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:32 smithi099 bash[16328]: cluster 2024-01-27T23:32:31.218104+0000 mgr.smithi099.hzjdah (mgr.14182) 181 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:34.017 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:32:34.987 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:34 smithi099 bash[16328]: cluster 2024-01-27T23:32:33.218695+0000 mgr.smithi099.hzjdah (mgr.14182) 182 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:35.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:34 smithi142 bash[20347]: cluster 2024-01-27T23:32:33.218695+0000 mgr.smithi099.hzjdah (mgr.14182) 182 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:36.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:36 smithi099 bash[16328]: cluster 2024-01-27T23:32:35.219305+0000 mgr.smithi099.hzjdah (mgr.14182) 183 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:36.917 INFO:teuthology.orchestra.run.smithi099.stdout:107374182438 2024-01-27T23:32:37.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:36 smithi142 bash[20347]: cluster 2024-01-27T23:32:35.219305+0000 mgr.smithi099.hzjdah (mgr.14182) 183 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:37.569 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182425 got 107374182438 for osd.4 2024-01-27T23:32:37.570 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-01-27T23:32:37.828 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:37 smithi099 bash[16328]: audit 2024-01-27T23:32:36.922770+0000 mon.smithi099 (mon.0) 584 : audit [DBG] from='client.? 172.21.15.99:0/2678667302' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-01-27T23:32:38.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:37 smithi142 bash[20347]: audit 2024-01-27T23:32:36.922770+0000 mon.smithi099 (mon.0) 584 : audit [DBG] from='client.? 172.21.15.99:0/2678667302' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-01-27T23:32:39.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:38 smithi142 bash[20347]: cluster 2024-01-27T23:32:37.219931+0000 mgr.smithi099.hzjdah (mgr.14182) 184 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:39.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:38 smithi099 bash[16328]: cluster 2024-01-27T23:32:37.219931+0000 mgr.smithi099.hzjdah (mgr.14182) 184 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:41.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:40 smithi142 bash[20347]: cluster 2024-01-27T23:32:39.220479+0000 mgr.smithi099.hzjdah (mgr.14182) 185 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:41.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:40 smithi099 bash[16328]: cluster 2024-01-27T23:32:39.220479+0000 mgr.smithi099.hzjdah (mgr.14182) 185 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:42.411 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:32:43.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:42 smithi142 bash[20347]: cluster 2024-01-27T23:32:41.221144+0000 mgr.smithi099.hzjdah (mgr.14182) 186 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:43.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:42 smithi099 bash[16328]: cluster 2024-01-27T23:32:41.221144+0000 mgr.smithi099.hzjdah (mgr.14182) 186 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:45.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:44 smithi142 bash[20347]: cluster 2024-01-27T23:32:43.221839+0000 mgr.smithi099.hzjdah (mgr.14182) 187 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:45.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:44 smithi099 bash[16328]: cluster 2024-01-27T23:32:43.221839+0000 mgr.smithi099.hzjdah (mgr.14182) 187 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:45.341 INFO:teuthology.orchestra.run.smithi099.stdout:141733920808 2024-01-27T23:32:46.019 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920795 got 141733920808 for osd.5 2024-01-27T23:32:46.019 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-01-27T23:32:46.032 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:45 smithi099 bash[16328]: audit 2024-01-27T23:32:45.346590+0000 mon.smithi099 (mon.0) 585 : audit [DBG] from='client.? 172.21.15.99:0/1392514887' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-01-27T23:32:46.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:45 smithi142 bash[20347]: audit 2024-01-27T23:32:45.346590+0000 mon.smithi099 (mon.0) 585 : audit [DBG] from='client.? 172.21.15.99:0/1392514887' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-01-27T23:32:47.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:46 smithi142 bash[20347]: cluster 2024-01-27T23:32:45.222414+0000 mgr.smithi099.hzjdah (mgr.14182) 188 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:47.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:46 smithi099 bash[16328]: cluster 2024-01-27T23:32:45.222414+0000 mgr.smithi099.hzjdah (mgr.14182) 188 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:49.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:48 smithi142 bash[20347]: cluster 2024-01-27T23:32:47.222977+0000 mgr.smithi099.hzjdah (mgr.14182) 189 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:49.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:48 smithi099 bash[16328]: cluster 2024-01-27T23:32:47.222977+0000 mgr.smithi099.hzjdah (mgr.14182) 189 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:50.864 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:32:51.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:50 smithi142 bash[20347]: cluster 2024-01-27T23:32:49.223570+0000 mgr.smithi099.hzjdah (mgr.14182) 190 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:51.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:50 smithi099 bash[16328]: cluster 2024-01-27T23:32:49.223570+0000 mgr.smithi099.hzjdah (mgr.14182) 190 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:53.048 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:52 smithi142 bash[20347]: cluster 2024-01-27T23:32:51.224160+0000 mgr.smithi099.hzjdah (mgr.14182) 191 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:53.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:52 smithi099 bash[16328]: cluster 2024-01-27T23:32:51.224160+0000 mgr.smithi099.hzjdah (mgr.14182) 191 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:53.866 INFO:teuthology.orchestra.run.smithi099.stdout:124554051626 2024-01-27T23:32:54.528 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051613 got 124554051626 for osd.6 2024-01-27T23:32:54.529 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-01-27T23:32:55.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:54 smithi099 bash[16328]: cluster 2024-01-27T23:32:53.224733+0000 mgr.smithi099.hzjdah (mgr.14182) 192 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:55.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:54 smithi099 bash[16328]: audit 2024-01-27T23:32:53.871495+0000 mon.smithi099 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.99:0/1061876387' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-01-27T23:32:55.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:54 smithi142 bash[20347]: cluster 2024-01-27T23:32:53.224733+0000 mgr.smithi099.hzjdah (mgr.14182) 192 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:55.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:54 smithi142 bash[20347]: audit 2024-01-27T23:32:53.871495+0000 mon.smithi099 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.99:0/1061876387' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-01-27T23:32:57.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:56 smithi099 bash[16328]: cluster 2024-01-27T23:32:55.225305+0000 mgr.smithi099.hzjdah (mgr.14182) 193 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:57.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:56 smithi142 bash[20347]: cluster 2024-01-27T23:32:55.225305+0000 mgr.smithi099.hzjdah (mgr.14182) 193 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:59.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:32:58 smithi099 bash[16328]: cluster 2024-01-27T23:32:57.225884+0000 mgr.smithi099.hzjdah (mgr.14182) 194 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:59.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:32:58 smithi142 bash[20347]: cluster 2024-01-27T23:32:57.225884+0000 mgr.smithi099.hzjdah (mgr.14182) 194 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:32:59.411 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:33:01.078 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:00 smithi099 bash[16328]: cluster 2024-01-27T23:32:59.226476+0000 mgr.smithi099.hzjdah (mgr.14182) 195 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:01.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:00 smithi142 bash[20347]: cluster 2024-01-27T23:32:59.226476+0000 mgr.smithi099.hzjdah (mgr.14182) 195 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:02.438 INFO:teuthology.orchestra.run.smithi099.stdout:158913789992 2024-01-27T23:33:03.036 INFO:tasks.cephadm.ceph_manager.ceph:need seq 158913789979 got 158913789992 for osd.7 2024-01-27T23:33:03.036 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-01-27T23:33:03.036 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph pg dump --format=json 2024-01-27T23:33:03.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:02 smithi099 bash[16328]: cluster 2024-01-27T23:33:01.227057+0000 mgr.smithi099.hzjdah (mgr.14182) 196 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:03.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:02 smithi099 bash[16328]: audit 2024-01-27T23:33:02.443199+0000 mon.smithi099 (mon.0) 587 : audit [DBG] from='client.? 172.21.15.99:0/4232720054' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-01-27T23:33:03.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:02 smithi142 bash[20347]: cluster 2024-01-27T23:33:01.227057+0000 mgr.smithi099.hzjdah (mgr.14182) 196 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:03.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:02 smithi142 bash[20347]: audit 2024-01-27T23:33:02.443199+0000 mon.smithi099 (mon.0) 587 : audit [DBG] from='client.? 172.21.15.99:0/4232720054' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-01-27T23:33:05.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:04 smithi099 bash[16328]: cluster 2024-01-27T23:33:03.227604+0000 mgr.smithi099.hzjdah (mgr.14182) 197 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:05.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:04 smithi142 bash[20347]: cluster 2024-01-27T23:33:03.227604+0000 mgr.smithi099.hzjdah (mgr.14182) 197 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:07.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:06 smithi142 bash[20347]: cluster 2024-01-27T23:33:05.228163+0000 mgr.smithi099.hzjdah (mgr.14182) 198 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:07.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:06 smithi099 bash[16328]: cluster 2024-01-27T23:33:05.228163+0000 mgr.smithi099.hzjdah (mgr.14182) 198 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:07.872 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:33:09.017 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:08 smithi099 bash[16328]: cluster 2024-01-27T23:33:07.228728+0000 mgr.smithi099.hzjdah (mgr.14182) 199 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:09.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:08 smithi142 bash[20347]: cluster 2024-01-27T23:33:07.228728+0000 mgr.smithi099.hzjdah (mgr.14182) 199 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:10.298 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:09 smithi142 bash[20347]: cluster 2024-01-27T23:33:09.229344+0000 mgr.smithi099.hzjdah (mgr.14182) 200 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:10.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:09 smithi099 bash[16328]: cluster 2024-01-27T23:33:09.229344+0000 mgr.smithi099.hzjdah (mgr.14182) 200 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:10.907 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:33:10.909 INFO:teuthology.orchestra.run.smithi099.stderr:dumped all 2024-01-27T23:33:11.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:10 smithi142 bash[20347]: audit 2024-01-27T23:33:10.247317+0000 mon.smithi099 (mon.0) 588 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:33:11.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:10 smithi099 bash[16328]: audit 2024-01-27T23:33:10.247317+0000 mon.smithi099 (mon.0) 588 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:33:11.517 INFO:teuthology.orchestra.run.smithi099.stdout:{"pg_ready":true,"pg_map":{"version":185,"stamp":"2024-01-27T23:33:09.229055+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":2379804,"kb_used_data":3036,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548644,"statfs":{"total":767926730752,"available":765489811456,"internally_reserved":0,"allocated":3108864,"data_stored":1215477,"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":39,"state":"active+clean","last_fresh":"2024-01-27T23:29:48.830352+0000","last_change":"2024-01-27T23:29:48.830352+0000","last_active":"2024-01-27T23:29:48.830352+0000","last_peered":"2024-01-27T23:29:48.830352+0000","last_clean":"2024-01-27T23:29:48.830352+0000","last_became_active":"2024-01-27T23:29:48.829235+0000","last_became_peered":"2024-01-27T23:29:48.829235+0000","last_unstale":"2024-01-27T23:29:48.830352+0000","last_undegraded":"2024-01-27T23:29:48.830352+0000","last_fullsized":"2024-01-27T23:29:48.830352+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-01-27T23:29:28.448007+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-01-27T23:29:28.448007+0000","last_clean_scrub_stamp":"2024-01-27T23:29:28.448007+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":37,"seq":158913789994,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297472,"kb_used_data":376,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443584,"statfs":{"total":95990841344,"available":95686230016,"internally_reserved":0,"allocated":385024,"data_stored":151659,"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":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.89400000000000002,"5min":0.90800000000000003,"15min":0.91700000000000004},"min":{"1min":0.61099999999999999,"5min":0.60399999999999998,"15min":0.60399999999999998},"max":{"1min":1.375,"5min":1.996,"15min":1.996},"last":0.72099999999999997},{"interface":"front","average":{"1min":0.88800000000000001,"5min":0.92100000000000004,"15min":0.94499999999999995},"min":{"1min":0.66000000000000003,"5min":0.53700000000000003,"15min":0.53700000000000003},"max":{"1min":1.165,"5min":1.821,"15min":1.821},"last":0.878}]},{"osd":1,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.84899999999999998,"5min":0.88800000000000001,"15min":0.89800000000000002},"min":{"1min":0.44500000000000001,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":1.4530000000000001,"5min":1.9099999999999999,"15min":1.9099999999999999},"last":0.98799999999999999},{"interface":"front","average":{"1min":0.877,"5min":0.88500000000000001,"15min":0.90900000000000003},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":1.244,"5min":2.0569999999999999,"15min":2.0569999999999999},"last":0.78800000000000003}]},{"osd":2,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.80500000000000005,"5min":0.81399999999999995,"15min":0.81599999999999995},"min":{"1min":0.67300000000000004,"5min":0.61499999999999999,"15min":0.61499999999999999},"max":{"1min":1.0900000000000001,"5min":1.097,"15min":1.097},"last":1.04},{"interface":"front","average":{"1min":0.93899999999999995,"5min":0.99299999999999999,"15min":1.006},"min":{"1min":0.71299999999999997,"5min":0.70299999999999996,"15min":0.70299999999999996},"max":{"1min":1.3149999999999999,"5min":1.7789999999999999,"15min":1.7789999999999999},"last":1.0700000000000001}]},{"osd":3,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.95299999999999996,"5min":0.97599999999999998,"15min":0.97999999999999998},"min":{"1min":0.46800000000000003,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.2869999999999999,"5min":2.1379999999999999,"15min":2.1379999999999999},"last":0.92200000000000004},{"interface":"front","average":{"1min":0.95799999999999996,"5min":1.026,"15min":1.052},"min":{"1min":0.498,"5min":0.498,"15min":0.498},"max":{"1min":1.3240000000000001,"5min":1.9339999999999999,"15min":1.9339999999999999},"last":1.1619999999999999}]},{"osd":4,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.0900000000000001,"5min":1.1279999999999999,"15min":1.1399999999999999},"min":{"1min":0.68500000000000005,"5min":0.68500000000000005,"15min":0.68500000000000005},"max":{"1min":1.4750000000000001,"5min":2.0979999999999999,"15min":2.0979999999999999},"last":1.0269999999999999},{"interface":"front","average":{"1min":1.0069999999999999,"5min":0.97699999999999998,"15min":0.96699999999999997},"min":{"1min":0.72499999999999998,"5min":0.59499999999999997,"15min":0.59499999999999997},"max":{"1min":1.1839999999999999,"5min":1.415,"15min":1.415},"last":1.127}]},{"osd":5,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.123,"5min":1.179,"15min":1.2030000000000001},"min":{"1min":0.78300000000000003,"5min":0.48299999999999998,"15min":0.48299999999999998},"max":{"1min":1.5820000000000001,"5min":2.1749999999999998,"15min":2.1749999999999998},"last":1.1819999999999999},{"interface":"front","average":{"1min":1.0489999999999999,"5min":1.056,"15min":1.0549999999999999},"min":{"1min":0.755,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.2809999999999999,"5min":1.427,"15min":1.427},"last":1.2190000000000001}]},{"osd":6,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.22,"5min":1.25,"15min":1.264},"min":{"1min":0.85499999999999998,"5min":0.79400000000000004,"15min":0.79400000000000004},"max":{"1min":1.7130000000000001,"5min":2.2189999999999999,"15min":2.2189999999999999},"last":1.1060000000000001},{"interface":"front","average":{"1min":1.1459999999999999,"5min":1.1679999999999999,"15min":1.163},"min":{"1min":0.71199999999999997,"5min":0.67200000000000004,"15min":0.67200000000000004},"max":{"1min":1.6220000000000001,"5min":1.6220000000000001,"15min":1.6220000000000001},"last":1.702}]}]},{"osd":5,"up_from":33,"seq":141733920813,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.77400000000000002,"5min":0.82999999999999996,"15min":0.85599999999999998},"min":{"1min":0.63200000000000001,"5min":0.59899999999999998,"15min":0.59899999999999998},"max":{"1min":0.95299999999999996,"5min":1.1970000000000001,"15min":1.1970000000000001},"last":0.71499999999999997},{"interface":"front","average":{"1min":0.88200000000000001,"5min":0.92500000000000004,"15min":0.94499999999999995},"min":{"1min":0.63900000000000001,"5min":0.63900000000000001,"15min":0.63900000000000001},"max":{"1min":1.1779999999999999,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":0.76500000000000001}]},{"osd":1,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.79700000000000004,"5min":0.85399999999999998,"15min":0.86299999999999999},"min":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"max":{"1min":1.3109999999999999,"5min":1.857,"15min":1.857},"last":0.73999999999999999},{"interface":"front","average":{"1min":0.82899999999999996,"5min":0.81799999999999995,"15min":0.81200000000000006},"min":{"1min":0.51200000000000001,"5min":0.51200000000000001,"15min":0.51200000000000001},"max":{"1min":1.333,"5min":1.333,"15min":1.333},"last":0.84299999999999997}]},{"osd":2,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.871,"5min":0.98699999999999999,"15min":1.026},"min":{"1min":0.622,"5min":0.622,"15min":0.622},"max":{"1min":1.109,"5min":2.1709999999999998,"15min":2.1709999999999998},"last":0.93400000000000005},{"interface":"front","average":{"1min":1.0189999999999999,"5min":0.97999999999999998,"15min":0.96499999999999997},"min":{"1min":0.71299999999999997,"5min":0.71299999999999997,"15min":0.71299999999999997},"max":{"1min":1.4359999999999999,"5min":1.4359999999999999,"15min":1.4359999999999999},"last":0.81899999999999995}]},{"osd":3,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.88900000000000001,"5min":0.89800000000000002,"15min":0.88900000000000001},"min":{"1min":0.55900000000000005,"5min":0.51100000000000001,"15min":0.51100000000000001},"max":{"1min":1.341,"5min":1.341,"15min":1.341},"last":0.68999999999999995},{"interface":"front","average":{"1min":0.95099999999999996,"5min":1.002,"15min":1.0169999999999999},"min":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.5900000000000001,"5min":1.978,"15min":1.978},"last":0.66400000000000003}]},{"osd":4,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.075,"5min":1.1120000000000001,"15min":1.119},"min":{"1min":0.64800000000000002,"5min":0.64800000000000002,"15min":0.64800000000000002},"max":{"1min":1.7989999999999999,"5min":2.097,"15min":2.097},"last":1.0209999999999999},{"interface":"front","average":{"1min":1.0089999999999999,"5min":1.038,"15min":1.0429999999999999},"min":{"1min":0.76000000000000001,"5min":0.76000000000000001,"15min":0.76000000000000001},"max":{"1min":1.409,"5min":1.409,"15min":1.409},"last":1.121}]},{"osd":6,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.1499999999999999,"5min":1.1499999999999999,"15min":1.1499999999999999},"min":{"1min":0.78800000000000003,"5min":0.78800000000000003,"15min":0.78800000000000003},"max":{"1min":1.599,"5min":2.0369999999999999,"15min":2.0369999999999999},"last":0.873},{"interface":"front","average":{"1min":1.1859999999999999,"5min":1.2410000000000001,"15min":1.2569999999999999},"min":{"1min":0.93799999999999994,"5min":0.92300000000000004,"15min":0.92300000000000004},"max":{"1min":1.7010000000000001,"5min":2.234,"15min":2.234},"last":1.206}]},{"osd":7,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.1419999999999999,"5min":1.1359999999999999,"15min":1.1240000000000001},"min":{"1min":0.74299999999999999,"5min":0.72699999999999998,"15min":0.72699999999999998},"max":{"1min":1.534,"5min":1.948,"15min":1.948},"last":1.012},{"interface":"front","average":{"1min":1.163,"5min":1.202,"15min":1.2050000000000001},"min":{"1min":0.79600000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":1.8939999999999999,"5min":2.262,"15min":2.262},"last":1.151}]}]},{"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":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.70999999999999996,"5min":0.68400000000000005,"15min":0.69699999999999995},"min":{"1min":0.48199999999999998,"5min":0.45200000000000001,"15min":0.45200000000000001},"max":{"1min":1.2190000000000001,"5min":1.2529999999999999,"15min":1.2529999999999999},"last":0.58999999999999997},{"interface":"front","average":{"1min":0.78200000000000003,"5min":0.75,"15min":0.73599999999999999},"min":{"1min":0.56999999999999995,"5min":0.40400000000000003,"15min":0.40400000000000003},"max":{"1min":1.1699999999999999,"5min":1.2370000000000001,"15min":1.2370000000000001},"last":0.63500000000000001}]},{"osd":1,"last update":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.97999999999999998,"5min":0.93899999999999995,"15min":0.93700000000000006},"min":{"1min":0.80400000000000005,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.1870000000000001,"5min":1.1870000000000001,"15min":1.1870000000000001},"last":0.89100000000000001},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.91800000000000004,"15min":0.92600000000000005},"min":{"1min":0.69399999999999995,"5min":0.505,"15min":0.505},"max":{"1min":1.1859999999999999,"5min":1.5529999999999999,"15min":1.5529999999999999},"last":0.93400000000000005}]},{"osd":3,"last update":"Sat Jan 27 23:32:42 2024","interfaces":[{"interface":"back","average":{"1min":0.98799999999999999,"5min":0.94699999999999995,"15min":0.93300000000000005},"min":{"1min":0.78700000000000003,"5min":0.58399999999999996,"15min":0.58399999999999996},"max":{"1min":1.258,"5min":1.3520000000000001,"15min":1.3520000000000001},"last":0.81599999999999995},{"interface":"front","average":{"1min":1.0289999999999999,"5min":1.034,"15min":1.052},"min":{"1min":0.81499999999999995,"5min":0.53100000000000003,"15min":0.53100000000000003},"max":{"1min":1.2050000000000001,"5min":1.3029999999999999,"15min":1.3029999999999999},"last":0.76100000000000001}]},{"osd":4,"last update":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.93400000000000005,"5min":0.96299999999999997,"15min":1},"min":{"1min":0.72899999999999998,"5min":0.51700000000000002,"15min":0.51700000000000002},"max":{"1min":1.1559999999999999,"5min":1.6539999999999999,"15min":1.6539999999999999},"last":0.68700000000000006},{"interface":"front","average":{"1min":0.93799999999999994,"5min":0.872,"15min":0.86199999999999999},"min":{"1min":0.65400000000000003,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.147,"5min":1.1879999999999999,"15min":1.1879999999999999},"last":0.77500000000000002}]},{"osd":5,"last update":"Sat Jan 27 23:32:47 2024","interfaces":[{"interface":"back","average":{"1min":1.0429999999999999,"5min":1.0329999999999999,"15min":1.0429999999999999},"min":{"1min":0.86799999999999999,"5min":0.71299999999999997,"15min":0.71299999999999997},"max":{"1min":1.3100000000000001,"5min":1.708,"15min":1.708},"last":1.0449999999999999},{"interface":"front","average":{"1min":1.1060000000000001,"5min":1.0800000000000001,"15min":1.0820000000000001},"min":{"1min":0.80200000000000005,"5min":0.754,"15min":0.754},"max":{"1min":1.3779999999999999,"5min":1.601,"15min":1.601},"last":0.91100000000000003}]},{"osd":6,"last update":"Sat Jan 27 23:32:42 2024","interfaces":[{"interface":"back","average":{"1min":1.121,"5min":1.1020000000000001,"15min":1.1060000000000001},"min":{"1min":0.84299999999999997,"5min":0.69099999999999995,"15min":0.69099999999999995},"max":{"1min":1.339,"5min":1.7829999999999999,"15min":1.7829999999999999},"last":1.0109999999999999},{"interface":"front","average":{"1min":1.089,"5min":1.0740000000000001,"15min":1.0580000000000001},"min":{"1min":0.67800000000000005,"5min":0.65500000000000003,"15min":0.65500000000000003},"max":{"1min":1.3779999999999999,"5min":1.4359999999999999,"15min":1.4359999999999999},"last":0.98899999999999999}]},{"osd":7,"last update":"Sat Jan 27 23:32:51 2024","interfaces":[{"interface":"back","average":{"1min":1.1950000000000001,"5min":1.1180000000000001,"15min":1.099},"min":{"1min":1.0189999999999999,"5min":0.68100000000000005,"15min":0.68100000000000005},"max":{"1min":1.6950000000000001,"5min":1.8169999999999999,"15min":1.8169999999999999},"last":1.1339999999999999},{"interface":"front","average":{"1min":1.262,"5min":1.2210000000000001,"15min":1.208},"min":{"1min":0.90600000000000003,"5min":0.85199999999999998,"15min":0.85199999999999998},"max":{"1min":1.8080000000000001,"5min":1.9950000000000001,"15min":1.9950000000000001},"last":1.0840000000000001}]}]},{"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":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:37 2024","interfaces":[{"interface":"back","average":{"1min":0.84599999999999997,"5min":0.82699999999999996,"15min":0.81100000000000005},"min":{"1min":0.59199999999999997,"5min":0.502,"15min":0.502},"max":{"1min":0.98499999999999999,"5min":1.1719999999999999,"15min":1.1719999999999999},"last":0.65000000000000002},{"interface":"front","average":{"1min":0.872,"5min":0.83299999999999996,"15min":0.80700000000000005},"min":{"1min":0.63300000000000001,"5min":0.47299999999999998,"15min":0.47299999999999998},"max":{"1min":1.1859999999999999,"5min":1.1859999999999999,"15min":1.1859999999999999},"last":0.97099999999999997}]},{"osd":2,"last update":"Sat Jan 27 23:32:37 2024","interfaces":[{"interface":"back","average":{"1min":0.78200000000000003,"5min":0.81000000000000005,"15min":0.80000000000000004},"min":{"1min":0.623,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.2789999999999999,"5min":1.3009999999999999,"15min":1.3009999999999999},"last":0.92900000000000005},{"interface":"front","average":{"1min":0.78000000000000003,"5min":0.77300000000000002,"15min":0.77100000000000002},"min":{"1min":0.55800000000000005,"5min":0.53300000000000003,"15min":0.53300000000000003},"max":{"1min":1.2529999999999999,"5min":1.2529999999999999,"15min":1.2529999999999999},"last":0.78100000000000003}]},{"osd":3,"last update":"Sat Jan 27 23:32:43 2024","interfaces":[{"interface":"back","average":{"1min":0.85699999999999998,"5min":0.85899999999999999,"15min":0.86399999999999999},"min":{"1min":0.66800000000000004,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.0189999999999999,"5min":1.3320000000000001,"15min":1.3320000000000001},"last":0.81100000000000005},{"interface":"front","average":{"1min":0.95899999999999996,"5min":0.99199999999999999,"15min":0.99199999999999999},"min":{"1min":0.77500000000000002,"5min":0.68100000000000005,"15min":0.68100000000000005},"max":{"1min":1.131,"5min":1.2070000000000001,"15min":1.2070000000000001},"last":1.143}]},{"osd":4,"last update":"Sat Jan 27 23:32:37 2024","interfaces":[{"interface":"back","average":{"1min":0.93600000000000005,"5min":0.96199999999999997,"15min":0.96399999999999997},"min":{"1min":0.63400000000000001,"5min":0.63400000000000001,"15min":0.63400000000000001},"max":{"1min":1.254,"5min":1.381,"15min":1.381},"last":1.238},{"interface":"front","average":{"1min":0.93100000000000005,"5min":0.94599999999999995,"15min":0.95199999999999996},"min":{"1min":0.61799999999999999,"5min":0.59899999999999998,"15min":0.59899999999999998},"max":{"1min":1.3089999999999999,"5min":1.3089999999999999,"15min":1.3089999999999999},"last":1.006}]},{"osd":5,"last update":"Sat Jan 27 23:32:53 2024","interfaces":[{"interface":"back","average":{"1min":1,"5min":1.0529999999999999,"15min":1.0740000000000001},"min":{"1min":0.72799999999999998,"5min":0.72799999999999998,"15min":0.72799999999999998},"max":{"1min":1.2410000000000001,"5min":1.298,"15min":1.298},"last":0.86199999999999999},{"interface":"front","average":{"1min":1.0489999999999999,"5min":1.0720000000000001,"15min":1.071},"min":{"1min":0.82999999999999996,"5min":0.79600000000000004,"15min":0.79600000000000004},"max":{"1min":1.266,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":1.0369999999999999}]},{"osd":6,"last update":"Sat Jan 27 23:32:43 2024","interfaces":[{"interface":"back","average":{"1min":1.0800000000000001,"5min":1.115,"15min":1.1259999999999999},"min":{"1min":0.84499999999999997,"5min":0.76800000000000002,"15min":0.76800000000000002},"max":{"1min":1.3580000000000001,"5min":1.546,"15min":1.546},"last":1.089},{"interface":"front","average":{"1min":1.085,"5min":1.149,"15min":1.1619999999999999},"min":{"1min":0.90600000000000003,"5min":0.85599999999999998,"15min":0.85599999999999998},"max":{"1min":1.3520000000000001,"5min":1.5209999999999999,"15min":1.5209999999999999},"last":1.3049999999999999}]},{"osd":7,"last update":"Sat Jan 27 23:32:53 2024","interfaces":[{"interface":"back","average":{"1min":1.175,"5min":1.2529999999999999,"15min":1.2509999999999999},"min":{"1min":0.90100000000000002,"5min":0.90100000000000002,"15min":0.90100000000000002},"max":{"1min":1.3959999999999999,"5min":3.0859999999999999,"15min":3.0859999999999999},"last":1.26},{"interface":"front","average":{"1min":1.1870000000000001,"5min":1.2410000000000001,"15min":1.2290000000000001},"min":{"1min":1.042,"5min":0.96599999999999997,"15min":0.96599999999999997},"max":{"1min":1.538,"5min":1.6180000000000001,"15min":1.6180000000000001},"last":1.3540000000000001}]}]},{"osd":1,"up_from":21,"seq":90194313264,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:34 2024","interfaces":[{"interface":"back","average":{"1min":0.85199999999999998,"5min":0.80400000000000005,"15min":0.80400000000000005},"min":{"1min":0.58399999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.1970000000000001,"5min":1.2549999999999999,"15min":1.2549999999999999},"last":0.94399999999999995},{"interface":"front","average":{"1min":0.878,"5min":0.82599999999999996,"15min":0.80900000000000005},"min":{"1min":0.66200000000000003,"5min":0.64900000000000002,"15min":0.64900000000000002},"max":{"1min":1.536,"5min":1.536,"15min":1.536},"last":0.85799999999999998}]},{"osd":2,"last update":"Sat Jan 27 23:32:34 2024","interfaces":[{"interface":"back","average":{"1min":0.93300000000000005,"5min":0.94799999999999995,"15min":0.93200000000000005},"min":{"1min":0.67700000000000005,"5min":0.65500000000000003,"15min":0.65500000000000003},"max":{"1min":1.2290000000000001,"5min":2.133,"15min":2.133},"last":1.2050000000000001},{"interface":"front","average":{"1min":0.97299999999999998,"5min":0.91900000000000004,"15min":0.91100000000000003},"min":{"1min":0.75800000000000001,"5min":0.60599999999999998,"15min":0.60599999999999998},"max":{"1min":1.1539999999999999,"5min":1.169,"15min":1.169},"last":1.258}]},{"osd":3,"last update":"Sat Jan 27 23:32:44 2024","interfaces":[{"interface":"back","average":{"1min":0.81299999999999994,"5min":0.751,"15min":0.73299999999999998},"min":{"1min":0.59499999999999997,"5min":0.49399999999999999,"15min":0.49399999999999999},"max":{"1min":1.4590000000000001,"5min":1.4590000000000001,"15min":1.4590000000000001},"last":1.02},{"interface":"front","average":{"1min":0.96299999999999997,"5min":0.88300000000000001,"15min":0.85499999999999998},"min":{"1min":0.72699999999999998,"5min":0.48399999999999999,"15min":0.48399999999999999},"max":{"1min":1.258,"5min":1.286,"15min":1.286},"last":0.72199999999999998}]},{"osd":4,"last update":"Sat Jan 27 23:32:36 2024","interfaces":[{"interface":"back","average":{"1min":1.105,"5min":1.0469999999999999,"15min":1.0249999999999999},"min":{"1min":0.71999999999999997,"5min":0.71999999999999997,"15min":0.71999999999999997},"max":{"1min":1.3480000000000001,"5min":2.214,"15min":2.214},"last":1.2929999999999999},{"interface":"front","average":{"1min":0.90900000000000003,"5min":0.91800000000000004,"15min":0.92800000000000005},"min":{"1min":0.72999999999999998,"5min":0.69299999999999995,"15min":0.69299999999999995},"max":{"1min":1.1020000000000001,"5min":1.4159999999999999,"15min":1.4159999999999999},"last":1.1779999999999999}]},{"osd":5,"last update":"Sat Jan 27 23:32:52 2024","interfaces":[{"interface":"back","average":{"1min":0.99099999999999999,"5min":0.93899999999999995,"15min":0.92400000000000004},"min":{"1min":0.67800000000000005,"5min":0.64000000000000001,"15min":0.64000000000000001},"max":{"1min":1.6100000000000001,"5min":1.6100000000000001,"15min":1.6100000000000001},"last":1.2270000000000001},{"interface":"front","average":{"1min":1.1399999999999999,"5min":1.0580000000000001,"15min":1.008},"min":{"1min":0.90700000000000003,"5min":0.58299999999999996,"15min":0.58299999999999996},"max":{"1min":1.3460000000000001,"5min":3.2959999999999998,"15min":3.2959999999999998},"last":1.105}]},{"osd":6,"last update":"Sat Jan 27 23:32:44 2024","interfaces":[{"interface":"back","average":{"1min":1.1180000000000001,"5min":1.073,"15min":1.0580000000000001},"min":{"1min":0.97799999999999998,"5min":0.79300000000000004,"15min":0.79300000000000004},"max":{"1min":1.6819999999999999,"5min":1.6819999999999999,"15min":1.6819999999999999},"last":1.3169999999999999},{"interface":"front","average":{"1min":1.27,"5min":1.2130000000000001,"15min":1.1819999999999999},"min":{"1min":1.115,"5min":0.85099999999999998,"15min":0.85099999999999998},"max":{"1min":1.7589999999999999,"5min":2.274,"15min":2.274},"last":1.353}]},{"osd":7,"last update":"Sat Jan 27 23:32:52 2024","interfaces":[{"interface":"back","average":{"1min":1.179,"5min":1.0960000000000001,"15min":1.0640000000000001},"min":{"1min":0.93999999999999995,"5min":0.73499999999999999,"15min":0.73499999999999999},"max":{"1min":1.9890000000000001,"5min":1.9890000000000001,"15min":1.9890000000000001},"last":1.385},{"interface":"front","average":{"1min":1.292,"5min":1.1879999999999999,"15min":1.143},"min":{"1min":0.91400000000000003,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.6799999999999999,"5min":2.2490000000000001,"15min":2.2490000000000001},"last":1.411}]}]},{"osd":4,"up_from":25,"seq":107374182445,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:40 2024","interfaces":[{"interface":"back","average":{"1min":0.66500000000000004,"5min":0.71399999999999997,"15min":0.72499999999999998},"min":{"1min":0.52100000000000002,"5min":0.46400000000000002,"15min":0.46400000000000002},"max":{"1min":0.86299999999999999,"5min":1.0549999999999999,"15min":1.0549999999999999},"last":0.64100000000000001},{"interface":"front","average":{"1min":0.81799999999999995,"5min":0.83899999999999997,"15min":0.85799999999999998},"min":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":1.3029999999999999,"5min":1.3029999999999999,"15min":1.3029999999999999},"last":0.69799999999999995}]},{"osd":1,"last update":"Sat Jan 27 23:32:40 2024","interfaces":[{"interface":"back","average":{"1min":0.82399999999999995,"5min":0.89100000000000001,"15min":0.91500000000000004},"min":{"1min":0.68700000000000006,"5min":0.51400000000000001,"15min":0.51400000000000001},"max":{"1min":1.175,"5min":1.5209999999999999,"15min":1.5209999999999999},"last":0.97599999999999998},{"interface":"front","average":{"1min":0.91300000000000003,"5min":0.95099999999999996,"15min":0.96999999999999997},"min":{"1min":0.61699999999999999,"5min":0.60099999999999998,"15min":0.60099999999999998},"max":{"1min":1.121,"5min":1.609,"15min":1.609},"last":1.042}]},{"osd":2,"last update":"Sat Jan 27 23:32:40 2024","interfaces":[{"interface":"back","average":{"1min":0.82799999999999996,"5min":0.81999999999999995,"15min":0.83599999999999997},"min":{"1min":0.56899999999999995,"5min":0.54700000000000004,"15min":0.54700000000000004},"max":{"1min":1.1950000000000001,"5min":1.6519999999999999,"15min":1.6519999999999999},"last":0.76500000000000001},{"interface":"front","average":{"1min":0.84899999999999998,"5min":0.90200000000000002,"15min":0.92400000000000004},"min":{"1min":0.58899999999999997,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":1.0780000000000001,"5min":1.835,"15min":1.835},"last":0.94699999999999995}]},{"osd":3,"last update":"Sat Jan 27 23:32:40 2024","interfaces":[{"interface":"back","average":{"1min":0.96399999999999997,"5min":1.012,"15min":1.0269999999999999},"min":{"1min":0.76700000000000002,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.1659999999999999,"5min":1.8109999999999999,"15min":1.8109999999999999},"last":0.84699999999999998},{"interface":"front","average":{"1min":1.121,"5min":1.113,"15min":1.1180000000000001},"min":{"1min":0.92100000000000004,"5min":0.66700000000000004,"15min":0.66700000000000004},"max":{"1min":1.4079999999999999,"5min":1.5209999999999999,"15min":1.5209999999999999},"last":1.175}]},{"osd":5,"last update":"Sat Jan 27 23:32:46 2024","interfaces":[{"interface":"back","average":{"1min":0.92800000000000005,"5min":0.97999999999999998,"15min":0.98799999999999999},"min":{"1min":0.65900000000000003,"5min":0.65900000000000003,"15min":0.65900000000000003},"max":{"1min":1.1699999999999999,"5min":1.6319999999999999,"15min":1.6319999999999999},"last":1.0740000000000001},{"interface":"front","average":{"1min":1.093,"5min":1.107,"15min":1.119},"min":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"max":{"1min":1.3480000000000001,"5min":1.6919999999999999,"15min":1.6919999999999999},"last":1.3440000000000001}]},{"osd":6,"last update":"Sat Jan 27 23:32:40 2024","interfaces":[{"interface":"back","average":{"1min":1,"5min":1.1040000000000001,"15min":1.1319999999999999},"min":{"1min":0.747,"5min":0.64400000000000002,"15min":0.64400000000000002},"max":{"1min":1.3029999999999999,"5min":1.514,"15min":1.514},"last":1.282},{"interface":"front","average":{"1min":0.98499999999999999,"5min":1.048,"15min":1.0669999999999999},"min":{"1min":0.74199999999999999,"5min":0.65300000000000002,"15min":0.65300000000000002},"max":{"1min":1.288,"5min":1.3320000000000001,"15min":1.3320000000000001},"last":1.0009999999999999}]},{"osd":7,"last update":"Sat Jan 27 23:32:52 2024","interfaces":[{"interface":"back","average":{"1min":1.105,"5min":1.1220000000000001,"15min":1.1200000000000001},"min":{"1min":0.92300000000000004,"5min":0.82799999999999996,"15min":0.82799999999999996},"max":{"1min":1.375,"5min":1.4399999999999999,"15min":1.4399999999999999},"last":1.204},{"interface":"front","average":{"1min":1.1359999999999999,"5min":1.157,"15min":1.159},"min":{"1min":0.95199999999999996,"5min":0.95199999999999996,"15min":0.95199999999999996},"max":{"1min":1.3959999999999999,"5min":1.7350000000000001,"15min":1.7350000000000001},"last":1.2310000000000001}]}]},{"osd":3,"up_from":28,"seq":120259084332,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.93899999999999995,"5min":0.94099999999999995,"15min":0.93300000000000005},"min":{"1min":0.72599999999999998,"5min":0.58799999999999997,"15min":0.58799999999999997},"max":{"1min":1.2749999999999999,"5min":1.373,"15min":1.373},"last":1.016},{"interface":"front","average":{"1min":1.042,"5min":1.113,"15min":1.135},"min":{"1min":0.78100000000000003,"5min":0.59099999999999997,"15min":0.59099999999999997},"max":{"1min":1.28,"5min":1.419,"15min":1.419},"last":1.177}]},{"osd":1,"last update":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.69099999999999995,"5min":0.76200000000000001,"15min":0.78400000000000003},"min":{"1min":0.54300000000000004,"5min":0.49299999999999999,"15min":0.49299999999999999},"max":{"1min":1.1679999999999999,"5min":1.179,"15min":1.179},"last":0.69399999999999995},{"interface":"front","average":{"1min":0.78700000000000003,"5min":0.80800000000000005,"15min":0.81999999999999995},"min":{"1min":0.57799999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.0009999999999999,"5min":1.069,"15min":1.069},"last":0.72599999999999998}]},{"osd":2,"last update":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.89800000000000002,"5min":0.92300000000000004,"15min":0.92900000000000005},"min":{"1min":0.72199999999999998,"5min":0.61799999999999999,"15min":0.61799999999999999},"max":{"1min":1.071,"5min":1.1950000000000001,"15min":1.1950000000000001},"last":0.96399999999999997},{"interface":"front","average":{"1min":0.871,"5min":0.98599999999999999,"15min":1.022},"min":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.1499999999999999,"5min":1.4850000000000001,"15min":1.4850000000000001},"last":1.0700000000000001}]},{"osd":4,"last update":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.96199999999999997,"5min":0.996,"15min":1.006},"min":{"1min":0.755,"5min":0.65400000000000003,"15min":0.65400000000000003},"max":{"1min":1.171,"5min":1.52,"15min":1.52},"last":0.98699999999999999},{"interface":"front","average":{"1min":1.109,"5min":1.083,"15min":1.079},"min":{"1min":0.86199999999999999,"5min":0.70699999999999996,"15min":0.70699999999999996},"max":{"1min":1.2769999999999999,"5min":1.663,"15min":1.663},"last":0.93000000000000005}]},{"osd":5,"last update":"Sat Jan 27 23:32:47 2024","interfaces":[{"interface":"back","average":{"1min":0.90300000000000002,"5min":0.97399999999999998,"15min":1.0029999999999999},"min":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"max":{"1min":1.1240000000000001,"5min":1.369,"15min":1.369},"last":0.89800000000000002},{"interface":"front","average":{"1min":1.0629999999999999,"5min":1.0860000000000001,"15min":1.1000000000000001},"min":{"1min":0.66000000000000003,"5min":0.59199999999999997,"15min":0.59199999999999997},"max":{"1min":1.339,"5min":1.98,"15min":1.98},"last":0.82399999999999995}]},{"osd":6,"last update":"Sat Jan 27 23:32:46 2024","interfaces":[{"interface":"back","average":{"1min":1.177,"5min":1.23,"15min":1.238},"min":{"1min":0.91200000000000003,"5min":0.89600000000000002,"15min":0.89600000000000002},"max":{"1min":1.3520000000000001,"5min":2.0739999999999998,"15min":2.0739999999999998},"last":1.2569999999999999},{"interface":"front","average":{"1min":1.0700000000000001,"5min":1.123,"15min":1.145},"min":{"1min":0.81799999999999995,"5min":0.70399999999999996,"15min":0.70399999999999996},"max":{"1min":1.238,"5min":1.5629999999999999,"15min":1.5629999999999999},"last":1.2350000000000001}]},{"osd":7,"last update":"Sat Jan 27 23:32:57 2024","interfaces":[{"interface":"back","average":{"1min":1.0649999999999999,"5min":1.1060000000000001,"15min":1.1200000000000001},"min":{"1min":0.85399999999999998,"5min":0.50600000000000001,"15min":0.50600000000000001},"max":{"1min":1.3,"5min":1.6479999999999999,"15min":1.6479999999999999},"last":1.1539999999999999},{"interface":"front","average":{"1min":1.1919999999999999,"5min":1.248,"15min":1.254},"min":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"max":{"1min":1.383,"5min":2.1589999999999998,"15min":2.1589999999999998},"last":1.3180000000000001}]}]},{"osd":6,"up_from":29,"seq":124554051629,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.68100000000000005,"5min":0.69899999999999995,"15min":0.69799999999999995},"min":{"1min":0.50600000000000001,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":0.93400000000000005,"5min":1.163,"15min":1.163},"last":0.99299999999999999},{"interface":"front","average":{"1min":0.77700000000000002,"5min":0.76100000000000001,"15min":0.745},"min":{"1min":0.54000000000000004,"5min":0.44,"15min":0.44},"max":{"1min":1.0649999999999999,"5min":1.242,"15min":1.242},"last":0.58899999999999997}]},{"osd":1,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.95399999999999996,"5min":0.88900000000000001,"15min":0.85899999999999999},"min":{"1min":0.65100000000000002,"5min":0.56799999999999995,"15min":0.56799999999999995},"max":{"1min":1.196,"5min":1.2669999999999999,"15min":1.2669999999999999},"last":0.88600000000000001},{"interface":"front","average":{"1min":1.014,"5min":0.95399999999999996,"15min":0.93100000000000005},"min":{"1min":0.76000000000000001,"5min":0.60299999999999998,"15min":0.60299999999999998},"max":{"1min":1.236,"5min":1.236,"15min":1.236},"last":1.0700000000000001}]},{"osd":2,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.88800000000000001,"5min":0.871,"15min":0.877},"min":{"1min":0.65900000000000003,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.179,"5min":1.2370000000000001,"15min":1.2370000000000001},"last":0.70699999999999996},{"interface":"front","average":{"1min":0.82199999999999995,"5min":0.875,"15min":0.876},"min":{"1min":0.66600000000000004,"5min":0.53600000000000003,"15min":0.53600000000000003},"max":{"1min":1.069,"5min":1.399,"15min":1.399},"last":0.84099999999999997}]},{"osd":3,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.90400000000000003,"5min":0.91800000000000004,"15min":0.91800000000000004},"min":{"1min":0.70399999999999996,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.127,"5min":1.3260000000000001,"15min":1.3260000000000001},"last":0.81899999999999995},{"interface":"front","average":{"1min":0.98799999999999999,"5min":0.98199999999999998,"15min":0.97699999999999998},"min":{"1min":0.73099999999999998,"5min":0.53100000000000003,"15min":0.53100000000000003},"max":{"1min":1.3720000000000001,"5min":1.3720000000000001,"15min":1.3720000000000001},"last":1.1240000000000001}]},{"osd":4,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.96699999999999997,"5min":1.02,"15min":1.028},"min":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.22,"5min":1.968,"15min":1.968},"last":0.95199999999999996},{"interface":"front","average":{"1min":1.036,"5min":1.016,"15min":1.012},"min":{"1min":0.79500000000000004,"5min":0.55500000000000005,"15min":0.55500000000000005},"max":{"1min":1.2809999999999999,"5min":1.405,"15min":1.405},"last":0.96299999999999997}]},{"osd":5,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.127,"5min":1.155,"15min":1.159},"min":{"1min":0.90400000000000003,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.4970000000000001,"5min":2.1419999999999999,"15min":2.1419999999999999},"last":1.089},{"interface":"front","average":{"1min":1.1639999999999999,"5min":1.1379999999999999,"15min":1.1279999999999999},"min":{"1min":0.98299999999999998,"5min":0.748,"15min":0.748},"max":{"1min":1.474,"5min":1.474,"15min":1.474},"last":1.1080000000000001}]},{"osd":7,"last update":"Sat Jan 27 23:32:53 2024","interfaces":[{"interface":"back","average":{"1min":1.163,"5min":1.1699999999999999,"15min":1.1659999999999999},"min":{"1min":1.0209999999999999,"5min":0.82699999999999996,"15min":0.82699999999999996},"max":{"1min":1.331,"5min":1.7050000000000001,"15min":1.7050000000000001},"last":1.248},{"interface":"front","average":{"1min":1.2569999999999999,"5min":1.2170000000000001,"15min":1.2070000000000001},"min":{"1min":1.0029999999999999,"5min":0.80300000000000005,"15min":0.80300000000000005},"max":{"1min":1.5369999999999999,"5min":1.732,"15min":1.732},"last":1.032}]}]}],"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-01-27T23:33:11.519 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph pg dump --format=json 2024-01-27T23:33:12.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:11 smithi142 bash[20347]: audit 2024-01-27T23:33:10.904483+0000 mgr.smithi099.hzjdah (mgr.14182) 201 : audit [DBG] from='client.14464 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:12.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:11 smithi142 bash[20347]: cluster 2024-01-27T23:33:11.229986+0000 mgr.smithi099.hzjdah (mgr.14182) 202 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:12.328 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:11 smithi099 bash[16328]: audit 2024-01-27T23:33:10.904483+0000 mgr.smithi099.hzjdah (mgr.14182) 201 : audit [DBG] from='client.14464 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:12.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:11 smithi099 bash[16328]: cluster 2024-01-27T23:33:11.229986+0000 mgr.smithi099.hzjdah (mgr.14182) 202 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:14.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:14 smithi142 bash[20347]: cluster 2024-01-27T23:33:13.230639+0000 mgr.smithi099.hzjdah (mgr.14182) 203 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:14.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:14 smithi099 bash[16328]: cluster 2024-01-27T23:33:13.230639+0000 mgr.smithi099.hzjdah (mgr.14182) 203 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:16.121 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:33:16.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:16 smithi142 bash[20347]: cluster 2024-01-27T23:33:15.231345+0000 mgr.smithi099.hzjdah (mgr.14182) 204 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:16.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:16 smithi142 bash[20347]: audit 2024-01-27T23:33:16.085896+0000 mon.smithi099 (mon.0) 589 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:16.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:16 smithi142 bash[20347]: audit 2024-01-27T23:33:16.275165+0000 mon.smithi099 (mon.0) 590 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:16.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:16 smithi099 bash[16328]: cluster 2024-01-27T23:33:15.231345+0000 mgr.smithi099.hzjdah (mgr.14182) 204 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:16.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:16 smithi099 bash[16328]: audit 2024-01-27T23:33:16.085896+0000 mon.smithi099 (mon.0) 589 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:16.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:16 smithi099 bash[16328]: audit 2024-01-27T23:33:16.275165+0000 mon.smithi099 (mon.0) 590 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:17.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:17 smithi142 bash[20347]: audit 2024-01-27T23:33:16.572809+0000 mon.smithi099 (mon.0) 591 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:33:17.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:17 smithi142 bash[20347]: audit 2024-01-27T23:33:16.574134+0000 mon.smithi099 (mon.0) 592 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:33:17.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:17 smithi142 bash[20347]: audit 2024-01-27T23:33:16.581388+0000 mon.smithi099 (mon.0) 593 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:17.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:17 smithi142 bash[20347]: audit 2024-01-27T23:33:16.589470+0000 mon.smithi099 (mon.0) 594 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:33:17.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:17 smithi099 bash[16328]: audit 2024-01-27T23:33:16.572809+0000 mon.smithi099 (mon.0) 591 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:33:17.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:17 smithi099 bash[16328]: audit 2024-01-27T23:33:16.574134+0000 mon.smithi099 (mon.0) 592 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:33:17.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:17 smithi099 bash[16328]: audit 2024-01-27T23:33:16.581388+0000 mon.smithi099 (mon.0) 593 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:17.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:17 smithi099 bash[16328]: audit 2024-01-27T23:33:16.589470+0000 mon.smithi099 (mon.0) 594 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:33:18.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:18 smithi099 bash[16328]: cluster 2024-01-27T23:33:17.231991+0000 mgr.smithi099.hzjdah (mgr.14182) 205 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:19.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:18 smithi142 bash[20347]: cluster 2024-01-27T23:33:17.231991+0000 mgr.smithi099.hzjdah (mgr.14182) 205 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:19.158 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:33:19.161 INFO:teuthology.orchestra.run.smithi099.stderr:dumped all 2024-01-27T23:33:19.794 INFO:teuthology.orchestra.run.smithi099.stdout:{"pg_ready":true,"pg_map":{"version":189,"stamp":"2024-01-27T23:33:17.231677+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":2379804,"kb_used_data":3036,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548644,"statfs":{"total":767926730752,"available":765489811456,"internally_reserved":0,"allocated":3108864,"data_stored":1215477,"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":39,"state":"active+clean","last_fresh":"2024-01-27T23:29:48.830352+0000","last_change":"2024-01-27T23:29:48.830352+0000","last_active":"2024-01-27T23:29:48.830352+0000","last_peered":"2024-01-27T23:29:48.830352+0000","last_clean":"2024-01-27T23:29:48.830352+0000","last_became_active":"2024-01-27T23:29:48.829235+0000","last_became_peered":"2024-01-27T23:29:48.829235+0000","last_unstale":"2024-01-27T23:29:48.830352+0000","last_undegraded":"2024-01-27T23:29:48.830352+0000","last_fullsized":"2024-01-27T23:29:48.830352+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-01-27T23:29:28.448007+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-01-27T23:29:28.448007+0000","last_clean_scrub_stamp":"2024-01-27T23:29:28.448007+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":37,"seq":158913789996,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297472,"kb_used_data":376,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443584,"statfs":{"total":95990841344,"available":95686230016,"internally_reserved":0,"allocated":385024,"data_stored":151659,"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":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.89400000000000002,"5min":0.90800000000000003,"15min":0.91700000000000004},"min":{"1min":0.61099999999999999,"5min":0.60399999999999998,"15min":0.60399999999999998},"max":{"1min":1.375,"5min":1.996,"15min":1.996},"last":1.107},{"interface":"front","average":{"1min":0.88800000000000001,"5min":0.92100000000000004,"15min":0.94499999999999995},"min":{"1min":0.66000000000000003,"5min":0.53700000000000003,"15min":0.53700000000000003},"max":{"1min":1.165,"5min":1.821,"15min":1.821},"last":0.84999999999999998}]},{"osd":1,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.84899999999999998,"5min":0.88800000000000001,"15min":0.89800000000000002},"min":{"1min":0.44500000000000001,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":1.4530000000000001,"5min":1.9099999999999999,"15min":1.9099999999999999},"last":0.78400000000000003},{"interface":"front","average":{"1min":0.877,"5min":0.88500000000000001,"15min":0.90900000000000003},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":1.244,"5min":2.0569999999999999,"15min":2.0569999999999999},"last":1.018}]},{"osd":2,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.80500000000000005,"5min":0.81399999999999995,"15min":0.81599999999999995},"min":{"1min":0.67300000000000004,"5min":0.61499999999999999,"15min":0.61499999999999999},"max":{"1min":1.0900000000000001,"5min":1.097,"15min":1.097},"last":0.81599999999999995},{"interface":"front","average":{"1min":0.93899999999999995,"5min":0.99299999999999999,"15min":1.006},"min":{"1min":0.71299999999999997,"5min":0.70299999999999996,"15min":0.70299999999999996},"max":{"1min":1.3149999999999999,"5min":1.7789999999999999,"15min":1.7789999999999999},"last":1.0780000000000001}]},{"osd":3,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.95299999999999996,"5min":0.97599999999999998,"15min":0.97999999999999998},"min":{"1min":0.46800000000000003,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.2869999999999999,"5min":2.1379999999999999,"15min":2.1379999999999999},"last":0.747},{"interface":"front","average":{"1min":0.95799999999999996,"5min":1.026,"15min":1.052},"min":{"1min":0.498,"5min":0.498,"15min":0.498},"max":{"1min":1.3240000000000001,"5min":1.9339999999999999,"15min":1.9339999999999999},"last":0.92800000000000005}]},{"osd":4,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.0900000000000001,"5min":1.1279999999999999,"15min":1.1399999999999999},"min":{"1min":0.68500000000000005,"5min":0.68500000000000005,"15min":0.68500000000000005},"max":{"1min":1.4750000000000001,"5min":2.0979999999999999,"15min":2.0979999999999999},"last":1.1799999999999999},{"interface":"front","average":{"1min":1.0069999999999999,"5min":0.97699999999999998,"15min":0.96699999999999997},"min":{"1min":0.72499999999999998,"5min":0.59499999999999997,"15min":0.59499999999999997},"max":{"1min":1.1839999999999999,"5min":1.415,"15min":1.415},"last":0.91600000000000004}]},{"osd":5,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.123,"5min":1.179,"15min":1.2030000000000001},"min":{"1min":0.78300000000000003,"5min":0.48299999999999998,"15min":0.48299999999999998},"max":{"1min":1.5820000000000001,"5min":2.1749999999999998,"15min":2.1749999999999998},"last":0.872},{"interface":"front","average":{"1min":1.0489999999999999,"5min":1.056,"15min":1.0549999999999999},"min":{"1min":0.755,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.2809999999999999,"5min":1.427,"15min":1.427},"last":1.0469999999999999}]},{"osd":6,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.22,"5min":1.25,"15min":1.264},"min":{"1min":0.85499999999999998,"5min":0.79400000000000004,"15min":0.79400000000000004},"max":{"1min":1.7130000000000001,"5min":2.2189999999999999,"15min":2.2189999999999999},"last":1.228},{"interface":"front","average":{"1min":1.1459999999999999,"5min":1.1679999999999999,"15min":1.163},"min":{"1min":0.71199999999999997,"5min":0.67200000000000004,"15min":0.67200000000000004},"max":{"1min":1.6220000000000001,"5min":1.6220000000000001,"15min":1.6220000000000001},"last":0.97199999999999998}]}]},{"osd":5,"up_from":33,"seq":141733920814,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.77400000000000002,"5min":0.82999999999999996,"15min":0.85599999999999998},"min":{"1min":0.63200000000000001,"5min":0.59899999999999998,"15min":0.59899999999999998},"max":{"1min":0.95299999999999996,"5min":1.1970000000000001,"15min":1.1970000000000001},"last":0.93300000000000005},{"interface":"front","average":{"1min":0.88200000000000001,"5min":0.92500000000000004,"15min":0.94499999999999995},"min":{"1min":0.63900000000000001,"5min":0.63900000000000001,"15min":0.63900000000000001},"max":{"1min":1.1779999999999999,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":1.099}]},{"osd":1,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.79700000000000004,"5min":0.85399999999999998,"15min":0.86299999999999999},"min":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"max":{"1min":1.3109999999999999,"5min":1.857,"15min":1.857},"last":0.71699999999999997},{"interface":"front","average":{"1min":0.82899999999999996,"5min":0.81799999999999995,"15min":0.81200000000000006},"min":{"1min":0.51200000000000001,"5min":0.51200000000000001,"15min":0.51200000000000001},"max":{"1min":1.333,"5min":1.333,"15min":1.333},"last":0.76200000000000001}]},{"osd":2,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.871,"5min":0.98699999999999999,"15min":1.026},"min":{"1min":0.622,"5min":0.622,"15min":0.622},"max":{"1min":1.109,"5min":2.1709999999999998,"15min":2.1709999999999998},"last":0.97599999999999998},{"interface":"front","average":{"1min":1.0189999999999999,"5min":0.97999999999999998,"15min":0.96499999999999997},"min":{"1min":0.71299999999999997,"5min":0.71299999999999997,"15min":0.71299999999999997},"max":{"1min":1.4359999999999999,"5min":1.4359999999999999,"15min":1.4359999999999999},"last":0.95099999999999996}]},{"osd":3,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.88900000000000001,"5min":0.89800000000000002,"15min":0.88900000000000001},"min":{"1min":0.55900000000000005,"5min":0.51100000000000001,"15min":0.51100000000000001},"max":{"1min":1.341,"5min":1.341,"15min":1.341},"last":0.80300000000000005},{"interface":"front","average":{"1min":0.95099999999999996,"5min":1.002,"15min":1.0169999999999999},"min":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.5900000000000001,"5min":1.978,"15min":1.978},"last":1.083}]},{"osd":4,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.075,"5min":1.1120000000000001,"15min":1.119},"min":{"1min":0.64800000000000002,"5min":0.64800000000000002,"15min":0.64800000000000002},"max":{"1min":1.7989999999999999,"5min":2.097,"15min":2.097},"last":1.0409999999999999},{"interface":"front","average":{"1min":1.0089999999999999,"5min":1.038,"15min":1.0429999999999999},"min":{"1min":0.76000000000000001,"5min":0.76000000000000001,"15min":0.76000000000000001},"max":{"1min":1.409,"5min":1.409,"15min":1.409},"last":1.194}]},{"osd":6,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.1499999999999999,"5min":1.1499999999999999,"15min":1.1499999999999999},"min":{"1min":0.78800000000000003,"5min":0.78800000000000003,"15min":0.78800000000000003},"max":{"1min":1.599,"5min":2.0369999999999999,"15min":2.0369999999999999},"last":1.2270000000000001},{"interface":"front","average":{"1min":1.1859999999999999,"5min":1.2410000000000001,"15min":1.2569999999999999},"min":{"1min":0.93799999999999994,"5min":0.92300000000000004,"15min":0.92300000000000004},"max":{"1min":1.7010000000000001,"5min":2.234,"15min":2.234},"last":1.2529999999999999}]},{"osd":7,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.1419999999999999,"5min":1.1359999999999999,"15min":1.1240000000000001},"min":{"1min":0.74299999999999999,"5min":0.72699999999999998,"15min":0.72699999999999998},"max":{"1min":1.534,"5min":1.948,"15min":1.948},"last":1.304},{"interface":"front","average":{"1min":1.163,"5min":1.202,"15min":1.2050000000000001},"min":{"1min":0.79600000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":1.8939999999999999,"5min":2.262,"15min":2.262},"last":1.1459999999999999}]}]},{"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":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.70999999999999996,"5min":0.68400000000000005,"15min":0.69699999999999995},"min":{"1min":0.48199999999999998,"5min":0.45200000000000001,"15min":0.45200000000000001},"max":{"1min":1.2190000000000001,"5min":1.2529999999999999,"15min":1.2529999999999999},"last":0.53300000000000003},{"interface":"front","average":{"1min":0.78200000000000003,"5min":0.75,"15min":0.73599999999999999},"min":{"1min":0.56999999999999995,"5min":0.40400000000000003,"15min":0.40400000000000003},"max":{"1min":1.1699999999999999,"5min":1.2370000000000001,"15min":1.2370000000000001},"last":0.94499999999999995}]},{"osd":1,"last update":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.97999999999999998,"5min":0.93899999999999995,"15min":0.93700000000000006},"min":{"1min":0.80400000000000005,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.1870000000000001,"5min":1.1870000000000001,"15min":1.1870000000000001},"last":0.79000000000000004},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.91800000000000004,"15min":0.92600000000000005},"min":{"1min":0.69399999999999995,"5min":0.505,"15min":0.505},"max":{"1min":1.1859999999999999,"5min":1.5529999999999999,"15min":1.5529999999999999},"last":0.89700000000000002}]},{"osd":3,"last update":"Sat Jan 27 23:32:42 2024","interfaces":[{"interface":"back","average":{"1min":0.98799999999999999,"5min":0.94699999999999995,"15min":0.93300000000000005},"min":{"1min":0.78700000000000003,"5min":0.58399999999999996,"15min":0.58399999999999996},"max":{"1min":1.258,"5min":1.3520000000000001,"15min":1.3520000000000001},"last":0.82899999999999996},{"interface":"front","average":{"1min":1.0289999999999999,"5min":1.034,"15min":1.052},"min":{"1min":0.81499999999999995,"5min":0.53100000000000003,"15min":0.53100000000000003},"max":{"1min":1.2050000000000001,"5min":1.3029999999999999,"15min":1.3029999999999999},"last":1.208}]},{"osd":4,"last update":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.93400000000000005,"5min":0.96299999999999997,"15min":1},"min":{"1min":0.72899999999999998,"5min":0.51700000000000002,"15min":0.51700000000000002},"max":{"1min":1.1559999999999999,"5min":1.6539999999999999,"15min":1.6539999999999999},"last":0.99099999999999999},{"interface":"front","average":{"1min":0.93799999999999994,"5min":0.872,"15min":0.86199999999999999},"min":{"1min":0.65400000000000003,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.147,"5min":1.1879999999999999,"15min":1.1879999999999999},"last":0.67700000000000005}]},{"osd":5,"last update":"Sat Jan 27 23:32:47 2024","interfaces":[{"interface":"back","average":{"1min":1.0429999999999999,"5min":1.0329999999999999,"15min":1.0429999999999999},"min":{"1min":0.86799999999999999,"5min":0.71299999999999997,"15min":0.71299999999999997},"max":{"1min":1.3100000000000001,"5min":1.708,"15min":1.708},"last":1.04},{"interface":"front","average":{"1min":1.1060000000000001,"5min":1.0800000000000001,"15min":1.0820000000000001},"min":{"1min":0.80200000000000005,"5min":0.754,"15min":0.754},"max":{"1min":1.3779999999999999,"5min":1.601,"15min":1.601},"last":1.0700000000000001}]},{"osd":6,"last update":"Sat Jan 27 23:32:42 2024","interfaces":[{"interface":"back","average":{"1min":1.121,"5min":1.1020000000000001,"15min":1.1060000000000001},"min":{"1min":0.84299999999999997,"5min":0.69099999999999995,"15min":0.69099999999999995},"max":{"1min":1.339,"5min":1.7829999999999999,"15min":1.7829999999999999},"last":1.1060000000000001},{"interface":"front","average":{"1min":1.089,"5min":1.0740000000000001,"15min":1.0580000000000001},"min":{"1min":0.67800000000000005,"5min":0.65500000000000003,"15min":0.65500000000000003},"max":{"1min":1.3779999999999999,"5min":1.4359999999999999,"15min":1.4359999999999999},"last":1.147}]},{"osd":7,"last update":"Sat Jan 27 23:32:51 2024","interfaces":[{"interface":"back","average":{"1min":1.1950000000000001,"5min":1.1180000000000001,"15min":1.099},"min":{"1min":1.0189999999999999,"5min":0.68100000000000005,"15min":0.68100000000000005},"max":{"1min":1.6950000000000001,"5min":1.8169999999999999,"15min":1.8169999999999999},"last":1.125},{"interface":"front","average":{"1min":1.262,"5min":1.2210000000000001,"15min":1.208},"min":{"1min":0.90600000000000003,"5min":0.85199999999999998,"15min":0.85199999999999998},"max":{"1min":1.8080000000000001,"5min":1.9950000000000001,"15min":1.9950000000000001},"last":1.2390000000000001}]}]},{"osd":0,"up_from":16,"seq":68719476786,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:37 2024","interfaces":[{"interface":"back","average":{"1min":0.84599999999999997,"5min":0.82699999999999996,"15min":0.81100000000000005},"min":{"1min":0.59199999999999997,"5min":0.502,"15min":0.502},"max":{"1min":0.98499999999999999,"5min":1.1719999999999999,"15min":1.1719999999999999},"last":0.58999999999999997},{"interface":"front","average":{"1min":0.872,"5min":0.83299999999999996,"15min":0.80700000000000005},"min":{"1min":0.63300000000000001,"5min":0.47299999999999998,"15min":0.47299999999999998},"max":{"1min":1.1859999999999999,"5min":1.1859999999999999,"15min":1.1859999999999999},"last":0.64500000000000002}]},{"osd":2,"last update":"Sat Jan 27 23:32:37 2024","interfaces":[{"interface":"back","average":{"1min":0.78200000000000003,"5min":0.81000000000000005,"15min":0.80000000000000004},"min":{"1min":0.623,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.2789999999999999,"5min":1.3009999999999999,"15min":1.3009999999999999},"last":0.72399999999999998},{"interface":"front","average":{"1min":0.78000000000000003,"5min":0.77300000000000002,"15min":0.77100000000000002},"min":{"1min":0.55800000000000005,"5min":0.53300000000000003,"15min":0.53300000000000003},"max":{"1min":1.2529999999999999,"5min":1.2529999999999999,"15min":1.2529999999999999},"last":0.89700000000000002}]},{"osd":3,"last update":"Sat Jan 27 23:32:43 2024","interfaces":[{"interface":"back","average":{"1min":0.85699999999999998,"5min":0.85899999999999999,"15min":0.86399999999999999},"min":{"1min":0.66800000000000004,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.0189999999999999,"5min":1.3320000000000001,"15min":1.3320000000000001},"last":0.96099999999999997},{"interface":"front","average":{"1min":0.95899999999999996,"5min":0.99199999999999999,"15min":0.99199999999999999},"min":{"1min":0.77500000000000002,"5min":0.68100000000000005,"15min":0.68100000000000005},"max":{"1min":1.131,"5min":1.2070000000000001,"15min":1.2070000000000001},"last":0.93000000000000005}]},{"osd":4,"last update":"Sat Jan 27 23:32:37 2024","interfaces":[{"interface":"back","average":{"1min":0.93600000000000005,"5min":0.96199999999999997,"15min":0.96399999999999997},"min":{"1min":0.63400000000000001,"5min":0.63400000000000001,"15min":0.63400000000000001},"max":{"1min":1.254,"5min":1.381,"15min":1.381},"last":1.0129999999999999},{"interface":"front","average":{"1min":0.93100000000000005,"5min":0.94599999999999995,"15min":0.95199999999999996},"min":{"1min":0.61799999999999999,"5min":0.59899999999999998,"15min":0.59899999999999998},"max":{"1min":1.3089999999999999,"5min":1.3089999999999999,"15min":1.3089999999999999},"last":0.80900000000000005}]},{"osd":5,"last update":"Sat Jan 27 23:32:53 2024","interfaces":[{"interface":"back","average":{"1min":1,"5min":1.0529999999999999,"15min":1.0740000000000001},"min":{"1min":0.72799999999999998,"5min":0.72799999999999998,"15min":0.72799999999999998},"max":{"1min":1.2410000000000001,"5min":1.298,"15min":1.298},"last":1.0840000000000001},{"interface":"front","average":{"1min":1.0489999999999999,"5min":1.0720000000000001,"15min":1.071},"min":{"1min":0.82999999999999996,"5min":0.79600000000000004,"15min":0.79600000000000004},"max":{"1min":1.266,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":1.054}]},{"osd":6,"last update":"Sat Jan 27 23:32:43 2024","interfaces":[{"interface":"back","average":{"1min":1.0800000000000001,"5min":1.115,"15min":1.1259999999999999},"min":{"1min":0.84499999999999997,"5min":0.76800000000000002,"15min":0.76800000000000002},"max":{"1min":1.3580000000000001,"5min":1.546,"15min":1.546},"last":1.1579999999999999},{"interface":"front","average":{"1min":1.085,"5min":1.149,"15min":1.1619999999999999},"min":{"1min":0.90600000000000003,"5min":0.85599999999999998,"15min":0.85599999999999998},"max":{"1min":1.3520000000000001,"5min":1.5209999999999999,"15min":1.5209999999999999},"last":1.1910000000000001}]},{"osd":7,"last update":"Sat Jan 27 23:32:53 2024","interfaces":[{"interface":"back","average":{"1min":1.175,"5min":1.2529999999999999,"15min":1.2509999999999999},"min":{"1min":0.90100000000000002,"5min":0.90100000000000002,"15min":0.90100000000000002},"max":{"1min":1.3959999999999999,"5min":3.0859999999999999,"15min":3.0859999999999999},"last":1.22},{"interface":"front","average":{"1min":1.1870000000000001,"5min":1.2410000000000001,"15min":1.2290000000000001},"min":{"1min":1.042,"5min":0.96599999999999997,"15min":0.96599999999999997},"max":{"1min":1.538,"5min":1.6180000000000001,"15min":1.6180000000000001},"last":1.125}]}]},{"osd":1,"up_from":21,"seq":90194313265,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:34 2024","interfaces":[{"interface":"back","average":{"1min":0.85199999999999998,"5min":0.80400000000000005,"15min":0.80400000000000005},"min":{"1min":0.58399999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.1970000000000001,"5min":1.2549999999999999,"15min":1.2549999999999999},"last":0.59599999999999997},{"interface":"front","average":{"1min":0.878,"5min":0.82599999999999996,"15min":0.80900000000000005},"min":{"1min":0.66200000000000003,"5min":0.64900000000000002,"15min":0.64900000000000002},"max":{"1min":1.536,"5min":1.536,"15min":1.536},"last":0.82899999999999996}]},{"osd":2,"last update":"Sat Jan 27 23:32:34 2024","interfaces":[{"interface":"back","average":{"1min":0.93300000000000005,"5min":0.94799999999999995,"15min":0.93200000000000005},"min":{"1min":0.67700000000000005,"5min":0.65500000000000003,"15min":0.65500000000000003},"max":{"1min":1.2290000000000001,"5min":2.133,"15min":2.133},"last":0.80500000000000005},{"interface":"front","average":{"1min":0.97299999999999998,"5min":0.91900000000000004,"15min":0.91100000000000003},"min":{"1min":0.75800000000000001,"5min":0.60599999999999998,"15min":0.60599999999999998},"max":{"1min":1.1539999999999999,"5min":1.169,"15min":1.169},"last":0.877}]},{"osd":3,"last update":"Sat Jan 27 23:32:44 2024","interfaces":[{"interface":"back","average":{"1min":0.81299999999999994,"5min":0.751,"15min":0.73299999999999998},"min":{"1min":0.59499999999999997,"5min":0.49399999999999999,"15min":0.49399999999999999},"max":{"1min":1.4590000000000001,"5min":1.4590000000000001,"15min":1.4590000000000001},"last":1.131},{"interface":"front","average":{"1min":0.96299999999999997,"5min":0.88300000000000001,"15min":0.85499999999999998},"min":{"1min":0.72699999999999998,"5min":0.48399999999999999,"15min":0.48399999999999999},"max":{"1min":1.258,"5min":1.286,"15min":1.286},"last":0.91500000000000004}]},{"osd":4,"last update":"Sat Jan 27 23:32:36 2024","interfaces":[{"interface":"back","average":{"1min":1.105,"5min":1.0469999999999999,"15min":1.0249999999999999},"min":{"1min":0.71999999999999997,"5min":0.71999999999999997,"15min":0.71999999999999997},"max":{"1min":1.3480000000000001,"5min":2.214,"15min":2.214},"last":0.98199999999999998},{"interface":"front","average":{"1min":0.90900000000000003,"5min":0.91800000000000004,"15min":0.92800000000000005},"min":{"1min":0.72999999999999998,"5min":0.69299999999999995,"15min":0.69299999999999995},"max":{"1min":1.1020000000000001,"5min":1.4159999999999999,"15min":1.4159999999999999},"last":1.02}]},{"osd":5,"last update":"Sat Jan 27 23:32:52 2024","interfaces":[{"interface":"back","average":{"1min":0.99099999999999999,"5min":0.93899999999999995,"15min":0.92400000000000004},"min":{"1min":0.67800000000000005,"5min":0.64000000000000001,"15min":0.64000000000000001},"max":{"1min":1.6100000000000001,"5min":1.6100000000000001,"15min":1.6100000000000001},"last":0.95099999999999996},{"interface":"front","average":{"1min":1.1399999999999999,"5min":1.0580000000000001,"15min":1.008},"min":{"1min":0.90700000000000003,"5min":0.58299999999999996,"15min":0.58299999999999996},"max":{"1min":1.3460000000000001,"5min":3.2959999999999998,"15min":3.2959999999999998},"last":1.081}]},{"osd":6,"last update":"Sat Jan 27 23:32:44 2024","interfaces":[{"interface":"back","average":{"1min":1.1180000000000001,"5min":1.073,"15min":1.0580000000000001},"min":{"1min":0.97799999999999998,"5min":0.79300000000000004,"15min":0.79300000000000004},"max":{"1min":1.6819999999999999,"5min":1.6819999999999999,"15min":1.6819999999999999},"last":1.048},{"interface":"front","average":{"1min":1.27,"5min":1.2130000000000001,"15min":1.1819999999999999},"min":{"1min":1.115,"5min":0.85099999999999998,"15min":0.85099999999999998},"max":{"1min":1.7589999999999999,"5min":2.274,"15min":2.274},"last":1.151}]},{"osd":7,"last update":"Sat Jan 27 23:32:52 2024","interfaces":[{"interface":"back","average":{"1min":1.179,"5min":1.0960000000000001,"15min":1.0640000000000001},"min":{"1min":0.93999999999999995,"5min":0.73499999999999999,"15min":0.73499999999999999},"max":{"1min":1.9890000000000001,"5min":1.9890000000000001,"15min":1.9890000000000001},"last":1.2010000000000001},{"interface":"front","average":{"1min":1.292,"5min":1.1879999999999999,"15min":1.143},"min":{"1min":0.91400000000000003,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.6799999999999999,"5min":2.2490000000000001,"15min":2.2490000000000001},"last":1.216}]}]},{"osd":4,"up_from":25,"seq":107374182447,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:40 2024","interfaces":[{"interface":"back","average":{"1min":0.66500000000000004,"5min":0.71399999999999997,"15min":0.72499999999999998},"min":{"1min":0.52100000000000002,"5min":0.46400000000000002,"15min":0.46400000000000002},"max":{"1min":0.86299999999999999,"5min":1.0549999999999999,"15min":1.0549999999999999},"last":0.68100000000000005},{"interface":"front","average":{"1min":0.81799999999999995,"5min":0.83899999999999997,"15min":0.85799999999999998},"min":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":1.3029999999999999,"5min":1.3029999999999999,"15min":1.3029999999999999},"last":0.74199999999999999}]},{"osd":1,"last update":"Sat Jan 27 23:32:40 2024","interfaces":[{"interface":"back","average":{"1min":0.82399999999999995,"5min":0.89100000000000001,"15min":0.91500000000000004},"min":{"1min":0.68700000000000006,"5min":0.51400000000000001,"15min":0.51400000000000001},"max":{"1min":1.175,"5min":1.5209999999999999,"15min":1.5209999999999999},"last":0.85099999999999998},{"interface":"front","average":{"1min":0.91300000000000003,"5min":0.95099999999999996,"15min":0.96999999999999997},"min":{"1min":0.61699999999999999,"5min":0.60099999999999998,"15min":0.60099999999999998},"max":{"1min":1.121,"5min":1.609,"15min":1.609},"last":1.0249999999999999}]},{"osd":2,"last update":"Sat Jan 27 23:32:40 2024","interfaces":[{"interface":"back","average":{"1min":0.82799999999999996,"5min":0.81999999999999995,"15min":0.83599999999999997},"min":{"1min":0.56899999999999995,"5min":0.54700000000000004,"15min":0.54700000000000004},"max":{"1min":1.1950000000000001,"5min":1.6519999999999999,"15min":1.6519999999999999},"last":0.71699999999999997},{"interface":"front","average":{"1min":0.84899999999999998,"5min":0.90200000000000002,"15min":0.92400000000000004},"min":{"1min":0.58899999999999997,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":1.0780000000000001,"5min":1.835,"15min":1.835},"last":0.95399999999999996}]},{"osd":3,"last update":"Sat Jan 27 23:32:40 2024","interfaces":[{"interface":"back","average":{"1min":0.96399999999999997,"5min":1.012,"15min":1.0269999999999999},"min":{"1min":0.76700000000000002,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.1659999999999999,"5min":1.8109999999999999,"15min":1.8109999999999999},"last":0.89700000000000002},{"interface":"front","average":{"1min":1.121,"5min":1.113,"15min":1.1180000000000001},"min":{"1min":0.92100000000000004,"5min":0.66700000000000004,"15min":0.66700000000000004},"max":{"1min":1.4079999999999999,"5min":1.5209999999999999,"15min":1.5209999999999999},"last":1.121}]},{"osd":5,"last update":"Sat Jan 27 23:32:46 2024","interfaces":[{"interface":"back","average":{"1min":0.92800000000000005,"5min":0.97999999999999998,"15min":0.98799999999999999},"min":{"1min":0.65900000000000003,"5min":0.65900000000000003,"15min":0.65900000000000003},"max":{"1min":1.1699999999999999,"5min":1.6319999999999999,"15min":1.6319999999999999},"last":0.92400000000000004},{"interface":"front","average":{"1min":1.093,"5min":1.107,"15min":1.119},"min":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"max":{"1min":1.3480000000000001,"5min":1.6919999999999999,"15min":1.6919999999999999},"last":1.256}]},{"osd":6,"last update":"Sat Jan 27 23:32:40 2024","interfaces":[{"interface":"back","average":{"1min":1,"5min":1.1040000000000001,"15min":1.1319999999999999},"min":{"1min":0.747,"5min":0.64400000000000002,"15min":0.64400000000000002},"max":{"1min":1.3029999999999999,"5min":1.514,"15min":1.514},"last":1.204},{"interface":"front","average":{"1min":0.98499999999999999,"5min":1.048,"15min":1.0669999999999999},"min":{"1min":0.74199999999999999,"5min":0.65300000000000002,"15min":0.65300000000000002},"max":{"1min":1.288,"5min":1.3320000000000001,"15min":1.3320000000000001},"last":0.98099999999999998}]},{"osd":7,"last update":"Sat Jan 27 23:32:52 2024","interfaces":[{"interface":"back","average":{"1min":1.105,"5min":1.1220000000000001,"15min":1.1200000000000001},"min":{"1min":0.92300000000000004,"5min":0.82799999999999996,"15min":0.82799999999999996},"max":{"1min":1.375,"5min":1.4399999999999999,"15min":1.4399999999999999},"last":1.2789999999999999},{"interface":"front","average":{"1min":1.1359999999999999,"5min":1.157,"15min":1.159},"min":{"1min":0.95199999999999996,"5min":0.95199999999999996,"15min":0.95199999999999996},"max":{"1min":1.3959999999999999,"5min":1.7350000000000001,"15min":1.7350000000000001},"last":1.1519999999999999}]}]},{"osd":3,"up_from":28,"seq":120259084334,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.93899999999999995,"5min":0.94099999999999995,"15min":0.93300000000000005},"min":{"1min":0.72599999999999998,"5min":0.58799999999999997,"15min":0.58799999999999997},"max":{"1min":1.2749999999999999,"5min":1.373,"15min":1.373},"last":0.82899999999999996},{"interface":"front","average":{"1min":1.042,"5min":1.113,"15min":1.135},"min":{"1min":0.78100000000000003,"5min":0.59099999999999997,"15min":0.59099999999999997},"max":{"1min":1.28,"5min":1.419,"15min":1.419},"last":0.77900000000000003}]},{"osd":1,"last update":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.69099999999999995,"5min":0.76200000000000001,"15min":0.78400000000000003},"min":{"1min":0.54300000000000004,"5min":0.49299999999999999,"15min":0.49299999999999999},"max":{"1min":1.1679999999999999,"5min":1.179,"15min":1.179},"last":0.50700000000000001},{"interface":"front","average":{"1min":0.78700000000000003,"5min":0.80800000000000005,"15min":0.81999999999999995},"min":{"1min":0.57799999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"max":{"1min":1.0009999999999999,"5min":1.069,"15min":1.069},"last":0.66600000000000004}]},{"osd":2,"last update":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.89800000000000002,"5min":0.92300000000000004,"15min":0.92900000000000005},"min":{"1min":0.72199999999999998,"5min":0.61799999999999999,"15min":0.61799999999999999},"max":{"1min":1.071,"5min":1.1950000000000001,"15min":1.1950000000000001},"last":0.746},{"interface":"front","average":{"1min":0.871,"5min":0.98599999999999999,"15min":1.022},"min":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.1499999999999999,"5min":1.4850000000000001,"15min":1.4850000000000001},"last":0.72099999999999997}]},{"osd":4,"last update":"Sat Jan 27 23:32:35 2024","interfaces":[{"interface":"back","average":{"1min":0.96199999999999997,"5min":0.996,"15min":1.006},"min":{"1min":0.755,"5min":0.65400000000000003,"15min":0.65400000000000003},"max":{"1min":1.171,"5min":1.52,"15min":1.52},"last":0.81200000000000006},{"interface":"front","average":{"1min":1.109,"5min":1.083,"15min":1.079},"min":{"1min":0.86199999999999999,"5min":0.70699999999999996,"15min":0.70699999999999996},"max":{"1min":1.2769999999999999,"5min":1.663,"15min":1.663},"last":0.879}]},{"osd":5,"last update":"Sat Jan 27 23:32:47 2024","interfaces":[{"interface":"back","average":{"1min":0.90300000000000002,"5min":0.97399999999999998,"15min":1.0029999999999999},"min":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"max":{"1min":1.1240000000000001,"5min":1.369,"15min":1.369},"last":0.75700000000000001},{"interface":"front","average":{"1min":1.0629999999999999,"5min":1.0860000000000001,"15min":1.1000000000000001},"min":{"1min":0.66000000000000003,"5min":0.59199999999999997,"15min":0.59199999999999997},"max":{"1min":1.339,"5min":1.98,"15min":1.98},"last":0.63500000000000001}]},{"osd":6,"last update":"Sat Jan 27 23:32:46 2024","interfaces":[{"interface":"back","average":{"1min":1.177,"5min":1.23,"15min":1.238},"min":{"1min":0.91200000000000003,"5min":0.89600000000000002,"15min":0.89600000000000002},"max":{"1min":1.3520000000000001,"5min":2.0739999999999998,"15min":2.0739999999999998},"last":0.97299999999999998},{"interface":"front","average":{"1min":1.0700000000000001,"5min":1.123,"15min":1.145},"min":{"1min":0.81799999999999995,"5min":0.70399999999999996,"15min":0.70399999999999996},"max":{"1min":1.238,"5min":1.5629999999999999,"15min":1.5629999999999999},"last":0.70299999999999996}]},{"osd":7,"last update":"Sat Jan 27 23:32:57 2024","interfaces":[{"interface":"back","average":{"1min":1.0649999999999999,"5min":1.1060000000000001,"15min":1.1200000000000001},"min":{"1min":0.85399999999999998,"5min":0.50600000000000001,"15min":0.50600000000000001},"max":{"1min":1.3,"5min":1.6479999999999999,"15min":1.6479999999999999},"last":0.56899999999999995},{"interface":"front","average":{"1min":1.1919999999999999,"5min":1.248,"15min":1.254},"min":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"max":{"1min":1.383,"5min":2.1589999999999998,"15min":2.1589999999999998},"last":0.92400000000000004}]}]},{"osd":6,"up_from":29,"seq":124554051631,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297476,"kb_used_data":380,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443580,"statfs":{"total":95990841344,"available":95686225920,"internally_reserved":0,"allocated":389120,"data_stored":151974,"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":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.68100000000000005,"5min":0.69899999999999995,"15min":0.69799999999999995},"min":{"1min":0.50600000000000001,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":0.93400000000000005,"5min":1.163,"15min":1.163},"last":1.0049999999999999},{"interface":"front","average":{"1min":0.77700000000000002,"5min":0.76100000000000001,"15min":0.745},"min":{"1min":0.54000000000000004,"5min":0.44,"15min":0.44},"max":{"1min":1.0649999999999999,"5min":1.242,"15min":1.242},"last":0.71099999999999997}]},{"osd":1,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.95399999999999996,"5min":0.88900000000000001,"15min":0.85899999999999999},"min":{"1min":0.65100000000000002,"5min":0.56799999999999995,"15min":0.56799999999999995},"max":{"1min":1.196,"5min":1.2669999999999999,"15min":1.2669999999999999},"last":0.89100000000000001},{"interface":"front","average":{"1min":1.014,"5min":0.95399999999999996,"15min":0.93100000000000005},"min":{"1min":0.76000000000000001,"5min":0.60299999999999998,"15min":0.60299999999999998},"max":{"1min":1.236,"5min":1.236,"15min":1.236},"last":1.107}]},{"osd":2,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.88800000000000001,"5min":0.871,"15min":0.877},"min":{"1min":0.65900000000000003,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.179,"5min":1.2370000000000001,"15min":1.2370000000000001},"last":0.92000000000000004},{"interface":"front","average":{"1min":0.82199999999999995,"5min":0.875,"15min":0.876},"min":{"1min":0.66600000000000004,"5min":0.53600000000000003,"15min":0.53600000000000003},"max":{"1min":1.069,"5min":1.399,"15min":1.399},"last":0.93999999999999995}]},{"osd":3,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.90400000000000003,"5min":0.91800000000000004,"15min":0.91800000000000004},"min":{"1min":0.70399999999999996,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.127,"5min":1.3260000000000001,"15min":1.3260000000000001},"last":1.085},{"interface":"front","average":{"1min":0.98799999999999999,"5min":0.98199999999999998,"15min":0.97699999999999998},"min":{"1min":0.73099999999999998,"5min":0.53100000000000003,"15min":0.53100000000000003},"max":{"1min":1.3720000000000001,"5min":1.3720000000000001,"15min":1.3720000000000001},"last":1.1639999999999999}]},{"osd":4,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":0.96699999999999997,"5min":1.02,"15min":1.028},"min":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.22,"5min":1.968,"15min":1.968},"last":1.046},{"interface":"front","average":{"1min":1.036,"5min":1.016,"15min":1.012},"min":{"1min":0.79500000000000004,"5min":0.55500000000000005,"15min":0.55500000000000005},"max":{"1min":1.2809999999999999,"5min":1.405,"15min":1.405},"last":0.97899999999999998}]},{"osd":5,"last update":"Sat Jan 27 23:32:49 2024","interfaces":[{"interface":"back","average":{"1min":1.127,"5min":1.155,"15min":1.159},"min":{"1min":0.90400000000000003,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.4970000000000001,"5min":2.1419999999999999,"15min":2.1419999999999999},"last":1.24},{"interface":"front","average":{"1min":1.1639999999999999,"5min":1.1379999999999999,"15min":1.1279999999999999},"min":{"1min":0.98299999999999998,"5min":0.748,"15min":0.748},"max":{"1min":1.474,"5min":1.474,"15min":1.474},"last":1.1439999999999999}]},{"osd":7,"last update":"Sat Jan 27 23:32:53 2024","interfaces":[{"interface":"back","average":{"1min":1.163,"5min":1.1699999999999999,"15min":1.1659999999999999},"min":{"1min":1.0209999999999999,"5min":0.82699999999999996,"15min":0.82699999999999996},"max":{"1min":1.331,"5min":1.7050000000000001,"15min":1.7050000000000001},"last":1.5089999999999999},{"interface":"front","average":{"1min":1.2569999999999999,"5min":1.2170000000000001,"15min":1.2070000000000001},"min":{"1min":1.0029999999999999,"5min":0.80300000000000005,"15min":0.80300000000000005},"max":{"1min":1.5369999999999999,"5min":1.732,"15min":1.732},"last":1.1870000000000001}]}]}],"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-01-27T23:33:19.796 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-01-27T23:33:19.796 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-01-27T23:33:19.796 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-01-27T23:33:19.796 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph health --format=json 2024-01-27T23:33:20.849 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:20 smithi142 bash[20347]: audit 2024-01-27T23:33:19.156738+0000 mgr.smithi099.hzjdah (mgr.14182) 206 : audit [DBG] from='client.14468 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:20.849 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:20 smithi142 bash[20347]: cluster 2024-01-27T23:33:19.232497+0000 mgr.smithi099.hzjdah (mgr.14182) 207 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:21.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:20 smithi099 bash[16328]: audit 2024-01-27T23:33:19.156738+0000 mgr.smithi099.hzjdah (mgr.14182) 206 : audit [DBG] from='client.14468 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:21.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:20 smithi099 bash[16328]: cluster 2024-01-27T23:33:19.232497+0000 mgr.smithi099.hzjdah (mgr.14182) 207 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:22.851 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:22 smithi099 bash[16328]: cluster 2024-01-27T23:33:21.233008+0000 mgr.smithi099.hzjdah (mgr.14182) 208 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:23.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:22 smithi142 bash[20347]: cluster 2024-01-27T23:33:21.233008+0000 mgr.smithi099.hzjdah (mgr.14182) 208 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:24.640 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring config /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/mon.smithi099/config 2024-01-27T23:33:25.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:24 smithi142 bash[20347]: cluster 2024-01-27T23:33:23.233684+0000 mgr.smithi099.hzjdah (mgr.14182) 209 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:25.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:24 smithi099 bash[16328]: cluster 2024-01-27T23:33:23.233684+0000 mgr.smithi099.hzjdah (mgr.14182) 209 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:27.005 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:26 smithi099 bash[16328]: cluster 2024-01-27T23:33:25.234244+0000 mgr.smithi099.hzjdah (mgr.14182) 210 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:27.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:26 smithi142 bash[20347]: cluster 2024-01-27T23:33:25.234244+0000 mgr.smithi099.hzjdah (mgr.14182) 210 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:27.431 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:33:27.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:27 smithi099 bash[16328]: audit 2024-01-27T23:33:27.435980+0000 mon.smithi099 (mon.0) 595 : audit [DBG] from='client.? 172.21.15.99:0/2401628754' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-01-27T23:33:28.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:27 smithi142 bash[20347]: audit 2024-01-27T23:33:27.435980+0000 mon.smithi099 (mon.0) 595 : audit [DBG] from='client.? 172.21.15.99:0/2401628754' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-01-27T23:33:28.089 INFO:teuthology.orchestra.run.smithi099.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-01-27T23:33:28.089 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-01-27T23:33:28.089 INFO:tasks.cephadm:Setup complete, yielding 2024-01-27T23:33:28.090 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-27T23:33:28.099 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi099.front.sepia.ceph.com 2024-01-27T23:33:28.099 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch status' 2024-01-27T23:33:29.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:28 smithi142 bash[20347]: cluster 2024-01-27T23:33:27.234747+0000 mgr.smithi099.hzjdah (mgr.14182) 211 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:29.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:28 smithi099 bash[16328]: cluster 2024-01-27T23:33:27.234747+0000 mgr.smithi099.hzjdah (mgr.14182) 211 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:30.869 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:30 smithi099 bash[16328]: cluster 2024-01-27T23:33:29.235307+0000 mgr.smithi099.hzjdah (mgr.14182) 212 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:31.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:30 smithi142 bash[20347]: cluster 2024-01-27T23:33:29.235307+0000 mgr.smithi099.hzjdah (mgr.14182) 212 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:31.288 INFO:teuthology.orchestra.run.smithi099.stdout:Backend: cephadm 2024-01-27T23:33:31.288 INFO:teuthology.orchestra.run.smithi099.stdout:Available: Yes 2024-01-27T23:33:31.288 INFO:teuthology.orchestra.run.smithi099.stdout:Paused: No 2024-01-27T23:33:31.906 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch ps' 2024-01-27T23:33:32.958 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:32 smithi099 bash[16328]: cluster 2024-01-27T23:33:31.235839+0000 mgr.smithi099.hzjdah (mgr.14182) 213 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:32.958 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:32 smithi099 bash[16328]: audit 2024-01-27T23:33:31.292455+0000 mgr.smithi099.hzjdah (mgr.14182) 214 : audit [DBG] from='client.14476 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:33.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:32 smithi142 bash[20347]: cluster 2024-01-27T23:33:31.235839+0000 mgr.smithi099.hzjdah (mgr.14182) 213 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:33.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:32 smithi142 bash[20347]: audit 2024-01-27T23:33:31.292455+0000 mgr.smithi099.hzjdah (mgr.14182) 214 : audit [DBG] from='client.14476 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:35.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:34 smithi142 bash[20347]: cluster 2024-01-27T23:33:33.236394+0000 mgr.smithi099.hzjdah (mgr.14182) 215 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:35.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:34 smithi099 bash[16328]: cluster 2024-01-27T23:33:33.236394+0000 mgr.smithi099.hzjdah (mgr.14182) 215 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:35.101 INFO:teuthology.orchestra.run.smithi099.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:alertmanager.smithi099 smithi099 *:9093,9094 running (3m) 18s ago 6m 14.4M - 0.23.0 ba2b418f427c ffe5cce874cd 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:crash.smithi099 smithi099 running (6m) 18s ago 6m 7852k - 16.2.14-508-ga72a5dac 4f538c03cdfa 2e0b910c25ca 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:crash.smithi142 smithi142 running (5m) 19s ago 5m 9228k - 16.2.14-508-ga72a5dac 4f538c03cdfa 2f6331ef3312 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:grafana.smithi099 smithi099 *:3000 running (3m) 18s ago 5m 43.2M - 8.3.5 dad864ee21e9 984194035e24 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:mgr.smithi099.hzjdah smithi099 *:9283 running (7m) 18s ago 7m 429M - 16.2.14-508-ga72a5dac 4f538c03cdfa 1be359383421 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:mgr.smithi142.nlkoaq smithi142 *:8443,9283 running (5m) 19s ago 5m 379M - 16.2.14-508-ga72a5dac 4f538c03cdfa 9bbaa48c95bd 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:mon.smithi099 smithi099 running (7m) 18s ago 7m 60.6M 2048M 16.2.14-508-ga72a5dac 4f538c03cdfa c520d32d25ee 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:mon.smithi142 smithi142 running (5m) 19s ago 5m 57.3M 2048M 16.2.14-508-ga72a5dac 4f538c03cdfa 85bb252f72af 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:node-exporter.smithi099 smithi099 *:9100 running (5m) 18s ago 5m 10.8M - 1.3.1 1dbe0e931976 ae05b6ca2dfd 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:node-exporter.smithi142 smithi142 *:9100 running (5m) 19s ago 5m 11.3M - 1.3.1 1dbe0e931976 c68f3ad79a47 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:osd.0 smithi142 running (4m) 19s ago 4m 34.9M 3785M 16.2.14-508-ga72a5dac 4f538c03cdfa 9ddc50417467 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:osd.1 smithi099 running (4m) 18s ago 4m 37.3M 3529M 16.2.14-508-ga72a5dac 4f538c03cdfa 36ae2c2504a8 2024-01-27T23:33:35.102 INFO:teuthology.orchestra.run.smithi099.stdout:osd.2 smithi142 running (4m) 19s ago 4m 35.1M 3785M 16.2.14-508-ga72a5dac 4f538c03cdfa 3ec26a3e6ca0 2024-01-27T23:33:35.103 INFO:teuthology.orchestra.run.smithi099.stdout:osd.3 smithi099 running (4m) 18s ago 4m 34.4M 3529M 16.2.14-508-ga72a5dac 4f538c03cdfa 76e7fc145101 2024-01-27T23:33:35.103 INFO:teuthology.orchestra.run.smithi099.stdout:osd.4 smithi142 running (4m) 19s ago 4m 34.5M 3785M 16.2.14-508-ga72a5dac 4f538c03cdfa dfa16c8bb334 2024-01-27T23:33:35.103 INFO:teuthology.orchestra.run.smithi099.stdout:osd.5 smithi099 running (4m) 18s ago 4m 34.0M 3529M 16.2.14-508-ga72a5dac 4f538c03cdfa a212aee6b1ce 2024-01-27T23:33:35.103 INFO:teuthology.orchestra.run.smithi099.stdout:osd.6 smithi142 running (4m) 19s ago 4m 35.5M 3785M 16.2.14-508-ga72a5dac 4f538c03cdfa 3167916584d0 2024-01-27T23:33:35.103 INFO:teuthology.orchestra.run.smithi099.stdout:osd.7 smithi099 running (3m) 18s ago 3m 35.4M 3529M 16.2.14-508-ga72a5dac 4f538c03cdfa 25e214cf803c 2024-01-27T23:33:35.103 INFO:teuthology.orchestra.run.smithi099.stdout:prometheus.smithi142 smithi142 *:9095 running (5m) 19s ago 5m 55.0M - 2.33.4 514e6a882f6e d228337bc1e7 2024-01-27T23:33:35.754 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch ls' 2024-01-27T23:33:37.035 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:36 smithi099 bash[16328]: audit 2024-01-27T23:33:35.084869+0000 mgr.smithi099.hzjdah (mgr.14182) 216 : audit [DBG] from='client.14480 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:37.035 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:36 smithi099 bash[16328]: cluster 2024-01-27T23:33:35.237074+0000 mgr.smithi099.hzjdah (mgr.14182) 217 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:37.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:36 smithi142 bash[20347]: audit 2024-01-27T23:33:35.084869+0000 mgr.smithi099.hzjdah (mgr.14182) 216 : audit [DBG] from='client.14480 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:37.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:36 smithi142 bash[20347]: cluster 2024-01-27T23:33:35.237074+0000 mgr.smithi099.hzjdah (mgr.14182) 217 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:38.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:38 smithi099 bash[16328]: cluster 2024-01-27T23:33:37.237793+0000 mgr.smithi099.hzjdah (mgr.14182) 218 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:38.858 INFO:teuthology.orchestra.run.smithi099.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-01-27T23:33:38.858 INFO:teuthology.orchestra.run.smithi099.stdout:alertmanager ?:9093,9094 1/1 22s ago 6m count:1 2024-01-27T23:33:38.859 INFO:teuthology.orchestra.run.smithi099.stdout:crash 2/2 22s ago 7m * 2024-01-27T23:33:38.859 INFO:teuthology.orchestra.run.smithi099.stdout:grafana ?:3000 1/1 22s ago 6m count:1 2024-01-27T23:33:38.859 INFO:teuthology.orchestra.run.smithi099.stdout:mgr 2/2 22s ago 7m count:2 2024-01-27T23:33:38.859 INFO:teuthology.orchestra.run.smithi099.stdout:mon 2/2 22s ago 5m smithi099:172.21.15.99=smithi099;smithi142:172.21.15.142=smithi142;count:2 2024-01-27T23:33:38.859 INFO:teuthology.orchestra.run.smithi099.stdout:node-exporter ?:9100 2/2 22s ago 6m * 2024-01-27T23:33:38.859 INFO:teuthology.orchestra.run.smithi099.stdout:osd.all-available-devices 8 22s ago 5m * 2024-01-27T23:33:38.859 INFO:teuthology.orchestra.run.smithi099.stdout:prometheus ?:9095 1/1 22s ago 6m count:1 2024-01-27T23:33:39.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:38 smithi142 bash[20347]: cluster 2024-01-27T23:33:37.237793+0000 mgr.smithi099.hzjdah (mgr.14182) 218 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:39.512 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch host ls' 2024-01-27T23:33:40.810 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:40 smithi099 bash[16328]: audit 2024-01-27T23:33:38.858472+0000 mgr.smithi099.hzjdah (mgr.14182) 219 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:40.810 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:40 smithi099 bash[16328]: cluster 2024-01-27T23:33:39.238431+0000 mgr.smithi099.hzjdah (mgr.14182) 220 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:41.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:40 smithi142 bash[20347]: audit 2024-01-27T23:33:38.858472+0000 mgr.smithi099.hzjdah (mgr.14182) 219 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:41.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:40 smithi142 bash[20347]: cluster 2024-01-27T23:33:39.238431+0000 mgr.smithi099.hzjdah (mgr.14182) 220 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:42.628 INFO:teuthology.orchestra.run.smithi099.stdout:HOST ADDR LABELS STATUS 2024-01-27T23:33:42.628 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 172.21.15.99 2024-01-27T23:33:42.628 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 172.21.15.142 2024-01-27T23:33:42.628 INFO:teuthology.orchestra.run.smithi099.stdout:2 hosts in cluster 2024-01-27T23:33:43.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:42 smithi142 bash[20347]: cluster 2024-01-27T23:33:41.239002+0000 mgr.smithi099.hzjdah (mgr.14182) 221 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:43.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:42 smithi099 bash[16328]: cluster 2024-01-27T23:33:41.239002+0000 mgr.smithi099.hzjdah (mgr.14182) 221 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:43.282 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch device ls' 2024-01-27T23:33:44.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:43 smithi142 bash[20347]: audit 2024-01-27T23:33:42.631401+0000 mgr.smithi099.hzjdah (mgr.14182) 222 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:44.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:43 smithi099 bash[16328]: audit 2024-01-27T23:33:42.631401+0000 mgr.smithi099.hzjdah (mgr.14182) 222 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:44.697 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:44 smithi099 bash[16328]: cluster 2024-01-27T23:33:43.239627+0000 mgr.smithi099.hzjdah (mgr.14182) 223 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:45.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:44 smithi142 bash[20347]: cluster 2024-01-27T23:33:43.239627+0000 mgr.smithi099.hzjdah (mgr.14182) 223 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:46.522 INFO:teuthology.orchestra.run.smithi099.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-01-27T23:33:46.522 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 /dev/nvme0n1 ssd _PHFT62040101400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-01-27T23:33:46.522 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 /dev/nvme1n1 ssd _176dd18cf93d92cf 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:46.522 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 /dev/nvme2n1 ssd _a1995f6392d4deee 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:46.522 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 /dev/nvme3n1 ssd _703d669630ad769f 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:46.522 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 /dev/nvme4n1 ssd _d9b3f11ae0ae5bf9 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:46.523 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 /dev/nvme0n1 ssd _CVFT6303009Y400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-01-27T23:33:46.523 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 /dev/nvme1n1 ssd _787965ad563c63c5 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:46.523 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 /dev/nvme2n1 ssd _4854d2ece30ff899 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:46.523 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 /dev/nvme3n1 ssd _1a6a3686a26d5886 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:46.523 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 /dev/nvme4n1 ssd _7a4866d78a52ff35 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:47.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:46 smithi142 bash[20347]: cluster 2024-01-27T23:33:45.240196+0000 mgr.smithi099.hzjdah (mgr.14182) 224 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:47.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:46 smithi099 bash[16328]: cluster 2024-01-27T23:33:45.240196+0000 mgr.smithi099.hzjdah (mgr.14182) 224 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:47.191 INFO:teuthology.run_tasks:Running task vip... 2024-01-27T23:33:47.204 INFO:tasks.vip:Allocating static IPs for each host... 2024-01-27T23:33:47.204 INFO:tasks.vip:peername 172.21.15.99 2024-01-27T23:33:47.207 INFO:tasks.vip:172.21.15.99 in 172.21.0.0/20, pos 3938 2024-01-27T23:33:47.211 INFO:tasks.vip:smithi099.front.sepia.ceph.com static 10.0.15.99, vnet 10.0.0.0/16 2024-01-27T23:33:47.211 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-01-27T23:33:47.211 DEBUG:teuthology.orchestra.run.smithi099:> sudo ip route ls 2024-01-27T23:33:47.225 INFO:teuthology.orchestra.run.smithi099.stdout:default via 172.21.15.254 dev enp3s0f1 2024-01-27T23:33:47.226 INFO:teuthology.orchestra.run.smithi099.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.99 metric 100 2024-01-27T23:33:47.226 INFO:teuthology.orchestra.run.smithi099.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-01-27T23:33:47.226 INFO:teuthology.orchestra.run.smithi099.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.99 2024-01-27T23:33:47.226 INFO:teuthology.orchestra.run.smithi099.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.99 metric 100 2024-01-27T23:33:47.227 INFO:tasks.vip:Configuring 10.0.15.99 on smithi099.front.sepia.ceph.com iface enp3s0f1... 2024-01-27T23:33:47.227 DEBUG:teuthology.orchestra.run.smithi099:> sudo ip addr add 10.0.15.99/16 dev enp3s0f1 2024-01-27T23:33:47.282 INFO:tasks.vip:peername 172.21.15.142 2024-01-27T23:33:47.285 INFO:tasks.vip:172.21.15.142 in 172.21.0.0/20, pos 3981 2024-01-27T23:33:47.288 INFO:tasks.vip:smithi142.front.sepia.ceph.com static 10.0.15.142, vnet 10.0.0.0/16 2024-01-27T23:33:47.289 DEBUG:teuthology.orchestra.run.smithi142:> sudo ip route ls 2024-01-27T23:33:47.303 INFO:teuthology.orchestra.run.smithi142.stdout:default via 172.21.15.254 dev enp3s0f1 2024-01-27T23:33:47.303 INFO:teuthology.orchestra.run.smithi142.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.142 metric 100 2024-01-27T23:33:47.303 INFO:teuthology.orchestra.run.smithi142.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-01-27T23:33:47.303 INFO:teuthology.orchestra.run.smithi142.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.142 2024-01-27T23:33:47.304 INFO:teuthology.orchestra.run.smithi142.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.142 metric 100 2024-01-27T23:33:47.304 INFO:tasks.vip:Configuring 10.0.15.142 on smithi142.front.sepia.ceph.com iface enp3s0f1... 2024-01-27T23:33:47.305 DEBUG:teuthology.orchestra.run.smithi142:> sudo ip addr add 10.0.15.142/16 dev enp3s0f1 2024-01-27T23:33:47.363 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-27T23:33:47.371 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi099.front.sepia.ceph.com 2024-01-27T23:33:47.371 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-01-27T23:33:48.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:47 smithi142 bash[20347]: audit 2024-01-27T23:33:46.518729+0000 mgr.smithi099.hzjdah (mgr.14182) 225 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:48.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:47 smithi099 bash[16328]: audit 2024-01-27T23:33:46.518729+0000 mgr.smithi099.hzjdah (mgr.14182) 225 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:48.883 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:48 smithi099 bash[16328]: cluster 2024-01-27T23:33:47.240921+0000 mgr.smithi099.hzjdah (mgr.14182) 226 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:48.926 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:48 smithi142 bash[20347]: cluster 2024-01-27T23:33:47.240921+0000 mgr.smithi099.hzjdah (mgr.14182) 226 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:50.765 INFO:teuthology.orchestra.run.smithi099.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-01-27T23:33:50.765 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 /dev/nvme0n1 ssd _PHFT62040101400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-01-27T23:33:50.765 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 /dev/nvme1n1 ssd _176dd18cf93d92cf 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:50.765 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 /dev/nvme2n1 ssd _a1995f6392d4deee 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:50.766 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 /dev/nvme3n1 ssd _703d669630ad769f 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:50.766 INFO:teuthology.orchestra.run.smithi099.stdout:smithi099 /dev/nvme4n1 ssd _d9b3f11ae0ae5bf9 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:50.766 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 /dev/nvme0n1 ssd _CVFT6303009Y400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-01-27T23:33:50.766 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 /dev/nvme1n1 ssd _787965ad563c63c5 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:50.766 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 /dev/nvme2n1 ssd _4854d2ece30ff899 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:50.766 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 /dev/nvme3n1 ssd _1a6a3686a26d5886 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:50.766 INFO:teuthology.orchestra.run.smithi099.stdout:smithi142 /dev/nvme4n1 ssd _7a4866d78a52ff35 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:33:51.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:50 smithi142 bash[20347]: cluster 2024-01-27T23:33:49.241590+0000 mgr.smithi099.hzjdah (mgr.14182) 227 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:51.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:50 smithi099 bash[16328]: cluster 2024-01-27T23:33:49.241590+0000 mgr.smithi099.hzjdah (mgr.14182) 227 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:51.399 INFO:teuthology.run_tasks:Running task vip.exec... 2024-01-27T23:33:51.407 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi099.front.sepia.ceph.com 2024-01-27T23:33:51.408 DEBUG:teuthology.orchestra.run.smithi099:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-01-27T23:33:51.417 INFO:teuthology.orchestra.run.smithi099.stderr:+ systemctl stop nfs-server 2024-01-27T23:33:51.437 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi142.front.sepia.ceph.com 2024-01-27T23:33:51.438 DEBUG:teuthology.orchestra.run.smithi142:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-01-27T23:33:51.452 INFO:teuthology.orchestra.run.smithi142.stderr:+ systemctl stop nfs-server 2024-01-27T23:33:51.474 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-27T23:33:51.484 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi099.front.sepia.ceph.com 2024-01-27T23:33:51.484 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-01-27T23:33:51.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:51 smithi142 bash[20347]: audit 2024-01-27T23:33:50.765480+0000 mgr.smithi099.hzjdah (mgr.14182) 228 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:51.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:51 smithi142 bash[20347]: audit 2024-01-27T23:33:50.798453+0000 mon.smithi099 (mon.0) 596 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:33:52.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:51 smithi099 bash[16328]: audit 2024-01-27T23:33:50.765480+0000 mgr.smithi099.hzjdah (mgr.14182) 228 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:52.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:51 smithi099 bash[16328]: audit 2024-01-27T23:33:50.798453+0000 mon.smithi099 (mon.0) 596 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:33:52.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:52 smithi099 bash[16328]: cluster 2024-01-27T23:33:51.242160+0000 mgr.smithi099.hzjdah (mgr.14182) 229 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:53.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:52 smithi142 bash[20347]: cluster 2024-01-27T23:33:51.242160+0000 mgr.smithi099.hzjdah (mgr.14182) 229 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:54.719 INFO:teuthology.orchestra.run.smithi099.stdout:Scheduled rgw.foorgw update... 2024-01-27T23:33:55.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:54 smithi142 bash[20347]: cluster 2024-01-27T23:33:53.242697+0000 mgr.smithi099.hzjdah (mgr.14182) 230 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:55.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:54 smithi099 bash[16328]: cluster 2024-01-27T23:33:53.242697+0000 mgr.smithi099.hzjdah (mgr.14182) 230 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:55.401 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.99/16' 2024-01-27T23:33:56.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:55 smithi142 bash[20347]: audit 2024-01-27T23:33:54.713552+0000 mgr.smithi099.hzjdah (mgr.14182) 231 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:56.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:55 smithi142 bash[20347]: cephadm 2024-01-27T23:33:54.716955+0000 mgr.smithi099.hzjdah (mgr.14182) 232 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-27T23:33:56.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:55 smithi142 bash[20347]: audit 2024-01-27T23:33:54.723191+0000 mon.smithi099 (mon.0) 597 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:56.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:55 smithi099 bash[16328]: audit 2024-01-27T23:33:54.713552+0000 mgr.smithi099.hzjdah (mgr.14182) 231 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:56.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:55 smithi099 bash[16328]: cephadm 2024-01-27T23:33:54.716955+0000 mgr.smithi099.hzjdah (mgr.14182) 232 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-27T23:33:56.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:55 smithi099 bash[16328]: audit 2024-01-27T23:33:54.723191+0000 mon.smithi099 (mon.0) 597 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:56.871 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:56 smithi099 bash[16328]: cluster 2024-01-27T23:33:55.243182+0000 mgr.smithi099.hzjdah (mgr.14182) 233 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:56.872 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:56 smithi099 bash[16328]: audit 2024-01-27T23:33:56.622877+0000 mon.smithi099 (mon.0) 598 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:57.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:56 smithi142 bash[20347]: cluster 2024-01-27T23:33:55.243182+0000 mgr.smithi099.hzjdah (mgr.14182) 233 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:57.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:56 smithi142 bash[20347]: audit 2024-01-27T23:33:56.622877+0000 mon.smithi099 (mon.0) 598 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:58.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:58 smithi142 bash[20347]: audit 2024-01-27T23:33:57.019686+0000 mon.smithi099 (mon.0) 599 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:58.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:58 smithi142 bash[20347]: cluster 2024-01-27T23:33:57.243571+0000 mgr.smithi099.hzjdah (mgr.14182) 234 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:58.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:58 smithi099 bash[16328]: audit 2024-01-27T23:33:57.019686+0000 mon.smithi099 (mon.0) 599 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:33:58.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:58 smithi099 bash[16328]: cluster 2024-01-27T23:33:57.243571+0000 mgr.smithi099.hzjdah (mgr.14182) 234 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:33:59.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:59 smithi142 bash[20347]: audit 2024-01-27T23:33:58.696126+0000 mgr.smithi099.hzjdah (mgr.14182) 235 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.99/16", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:59.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:33:59 smithi142 bash[20347]: audit 2024-01-27T23:33:58.699520+0000 mon.smithi099 (mon.0) 600 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-01-27T23:33:59.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:59 smithi099 bash[16328]: audit 2024-01-27T23:33:58.696126+0000 mgr.smithi099.hzjdah (mgr.14182) 235 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.99/16", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:33:59.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:33:59 smithi099 bash[16328]: audit 2024-01-27T23:33:58.699520+0000 mon.smithi099 (mon.0) 600 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-01-27T23:34:00.554 INFO:teuthology.orchestra.run.smithi099.stdout:NFS Cluster Created Successfully 2024-01-27T23:34:00.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:00 smithi142 bash[20347]: cluster 2024-01-27T23:33:59.244092+0000 mgr.smithi099.hzjdah (mgr.14182) 236 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:00.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:00 smithi142 bash[20347]: audit 2024-01-27T23:33:59.488550+0000 mon.smithi099 (mon.0) 601 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-01-27T23:34:00.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:00 smithi142 bash[20347]: cluster 2024-01-27T23:33:59.488682+0000 mon.smithi099 (mon.0) 602 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-01-27T23:34:00.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:00 smithi142 bash[20347]: audit 2024-01-27T23:33:59.494037+0000 mon.smithi099 (mon.0) 603 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-01-27T23:34:00.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:00 smithi099 bash[16328]: cluster 2024-01-27T23:33:59.244092+0000 mgr.smithi099.hzjdah (mgr.14182) 236 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:00.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:00 smithi099 bash[16328]: audit 2024-01-27T23:33:59.488550+0000 mon.smithi099 (mon.0) 601 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-01-27T23:34:00.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:00 smithi099 bash[16328]: cluster 2024-01-27T23:33:59.488682+0000 mon.smithi099 (mon.0) 602 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-01-27T23:34:00.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:00 smithi099 bash[16328]: audit 2024-01-27T23:33:59.494037+0000 mon.smithi099 (mon.0) 603 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-01-27T23:34:01.294 INFO:teuthology.run_tasks:Running task vip.exec... 2024-01-27T23:34:01.302 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi099.front.sepia.ceph.com 2024-01-27T23:34:01.302 DEBUG:teuthology.orchestra.run.smithi099:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-01-27T23:34:01.313 INFO:teuthology.orchestra.run.smithi099.stderr:+ dnf install -y python3-boto3 2024-01-27T23:34:01.313 INFO:teuthology.orchestra.run.smithi099.stderr:bash: dnf: command not found 2024-01-27T23:34:01.313 INFO:teuthology.orchestra.run.smithi099.stderr:+ apt install -y python3-boto3 2024-01-27T23:34:01.318 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:34:01.318 INFO:teuthology.orchestra.run.smithi099.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-01-27T23:34:01.318 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-27T23:34:01.385 INFO:teuthology.orchestra.run.smithi099.stdout:Reading package lists... 2024-01-27T23:34:01.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:01 smithi099 bash[16328]: audit 2024-01-27T23:34:00.491801+0000 mon.smithi099 (mon.0) 604 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-01-27T23:34:01.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:01 smithi099 bash[16328]: cluster 2024-01-27T23:34:00.492128+0000 mon.smithi099 (mon.0) 605 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-01-27T23:34:01.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:01 smithi099 bash[16328]: cephadm 2024-01-27T23:34:00.535648+0000 mgr.smithi099.hzjdah (mgr.14182) 237 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-01-27T23:34:01.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:01 smithi099 bash[16328]: audit 2024-01-27T23:34:00.548702+0000 mon.smithi099 (mon.0) 606 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:01.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:01 smithi099 bash[16328]: cephadm 2024-01-27T23:34:00.550806+0000 mgr.smithi099.hzjdah (mgr.14182) 238 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-01-27T23:34:01.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:01 smithi099 bash[16328]: audit 2024-01-27T23:34:00.557963+0000 mon.smithi099 (mon.0) 607 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:01.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:01 smithi099 bash[16328]: cluster 2024-01-27T23:34:01.493569+0000 mon.smithi099 (mon.0) 608 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-01-27T23:34:01.686 INFO:teuthology.orchestra.run.smithi099.stdout:Building dependency tree... 2024-01-27T23:34:01.686 INFO:teuthology.orchestra.run.smithi099.stdout:Reading state information... 2024-01-27T23:34:01.799 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:01 smithi142 bash[20347]: audit 2024-01-27T23:34:00.491801+0000 mon.smithi099 (mon.0) 604 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-01-27T23:34:01.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:01 smithi142 bash[20347]: cluster 2024-01-27T23:34:00.492128+0000 mon.smithi099 (mon.0) 605 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-01-27T23:34:01.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:01 smithi142 bash[20347]: cephadm 2024-01-27T23:34:00.535648+0000 mgr.smithi099.hzjdah (mgr.14182) 237 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-01-27T23:34:01.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:01 smithi142 bash[20347]: audit 2024-01-27T23:34:00.548702+0000 mon.smithi099 (mon.0) 606 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:01.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:01 smithi142 bash[20347]: cephadm 2024-01-27T23:34:00.550806+0000 mgr.smithi099.hzjdah (mgr.14182) 238 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-01-27T23:34:01.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:01 smithi142 bash[20347]: audit 2024-01-27T23:34:00.557963+0000 mon.smithi099 (mon.0) 607 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:01.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:01 smithi142 bash[20347]: cluster 2024-01-27T23:34:01.493569+0000 mon.smithi099 (mon.0) 608 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-01-27T23:34:01.894 INFO:teuthology.orchestra.run.smithi099.stdout:The following packages were automatically installed and are no longer required: 2024-01-27T23:34:01.894 INFO:teuthology.orchestra.run.smithi099.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-01-27T23:34:01.894 INFO:teuthology.orchestra.run.smithi099.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-01-27T23:34:01.895 INFO:teuthology.orchestra.run.smithi099.stdout: linux-modules-extra-4.15.0-194-generic 2024-01-27T23:34:01.895 INFO:teuthology.orchestra.run.smithi099.stdout:Use 'sudo apt autoremove' to remove them. 2024-01-27T23:34:01.895 INFO:teuthology.orchestra.run.smithi099.stdout:The following additional packages will be installed: 2024-01-27T23:34:01.896 INFO:teuthology.orchestra.run.smithi099.stdout: docutils-common libpaper-utils libpaper1 python3-botocore python3-dateutil 2024-01-27T23:34:01.896 INFO:teuthology.orchestra.run.smithi099.stdout: python3-docutils python3-jmespath python3-olefile python3-pil 2024-01-27T23:34:01.896 INFO:teuthology.orchestra.run.smithi099.stdout: python3-pygments python3-roman python3-s3transfer sgml-base xml-core 2024-01-27T23:34:01.898 INFO:teuthology.orchestra.run.smithi099.stdout:Suggested packages: 2024-01-27T23:34:01.899 INFO:teuthology.orchestra.run.smithi099.stdout: docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french 2024-01-27T23:34:01.899 INFO:teuthology.orchestra.run.smithi099.stdout: texlive-latex-base texlive-latex-recommended python-pil-doc python3-pil-dbg 2024-01-27T23:34:01.899 INFO:teuthology.orchestra.run.smithi099.stdout: sgml-base-doc debhelper 2024-01-27T23:34:01.938 INFO:teuthology.orchestra.run.smithi099.stdout:The following NEW packages will be installed: 2024-01-27T23:34:01.940 INFO:teuthology.orchestra.run.smithi099.stdout: docutils-common libpaper-utils libpaper1 python3-boto3 python3-botocore 2024-01-27T23:34:01.940 INFO:teuthology.orchestra.run.smithi099.stdout: python3-dateutil python3-docutils python3-jmespath python3-olefile 2024-01-27T23:34:01.940 INFO:teuthology.orchestra.run.smithi099.stdout: python3-pil python3-pygments python3-roman python3-s3transfer sgml-base 2024-01-27T23:34:01.940 INFO:teuthology.orchestra.run.smithi099.stdout: xml-core 2024-01-27T23:34:02.134 INFO:teuthology.orchestra.run.smithi099.stdout:0 upgraded, 15 newly installed, 0 to remove and 146 not upgraded. 2024-01-27T23:34:02.135 INFO:teuthology.orchestra.run.smithi099.stdout:Need to get 4,955 kB of archives. 2024-01-27T23:34:02.135 INFO:teuthology.orchestra.run.smithi099.stdout:After this operation, 55.1 MB of additional disk space will be used. 2024-01-27T23:34:02.135 INFO:teuthology.orchestra.run.smithi099.stdout:Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] 2024-01-27T23:34:02.199 INFO:teuthology.orchestra.run.smithi099.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] 2024-01-27T23:34:02.221 INFO:teuthology.orchestra.run.smithi099.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] 2024-01-27T23:34:02.369 INFO:teuthology.orchestra.run.smithi099.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] 2024-01-27T23:34:02.373 INFO:teuthology.orchestra.run.smithi099.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] 2024-01-27T23:34:02.377 INFO:teuthology.orchestra.run.smithi099.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-dateutil all 2.6.1-1 [52.3 kB] 2024-01-27T23:34:02.415 INFO:teuthology.orchestra.run.smithi099.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-roman all 2.0.0-3 [8,624 B] 2024-01-27T23:34:02.417 INFO:teuthology.orchestra.run.smithi099.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-docutils all 0.14+dfsg-3 [363 kB] 2024-01-27T23:34:02.512 INFO:teuthology.orchestra.run.smithi099.stdout:Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python3-jmespath all 0.9.3-1ubuntu1.1 [18.8 kB] 2024-01-27T23:34:02.513 INFO:teuthology.orchestra.run.smithi099.stdout:Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python3-botocore all 1.16.19+repack-1ubuntu0.18.04.1 [3,255 kB] 2024-01-27T23:34:02.590 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:02 smithi142 bash[20347]: cluster 2024-01-27T23:34:01.244715+0000 mgr.smithi099.hzjdah (mgr.14182) 239 : cluster [DBG] pgmap v213: 33 pgs: 7 creating+peering, 7 active+clean, 19 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:02.591 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:02 smithi142 bash[20347]: cluster 2024-01-27T23:34:01.574050+0000 mon.smithi099 (mon.0) 609 : cluster [DBG] mgrmap e19: smithi099.hzjdah(active, since 6m), standbys: smithi142.nlkoaq 2024-01-27T23:34:02.719 INFO:teuthology.orchestra.run.smithi099.stdout:Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python3-s3transfer all 0.3.3-1ubuntu0.18.04.1 [46.7 kB] 2024-01-27T23:34:02.720 INFO:teuthology.orchestra.run.smithi099.stdout:Get:12 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python3-boto3 all 1.4.2-1 [61.8 kB] 2024-01-27T23:34:02.723 INFO:teuthology.orchestra.run.smithi099.stdout:Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-olefile all 0.45.1-1 [33.3 kB] 2024-01-27T23:34:02.783 INFO:teuthology.orchestra.run.smithi099.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pil amd64 5.1.0-1ubuntu0.8 [331 kB] 2024-01-27T23:34:02.795 INFO:teuthology.orchestra.run.smithi099.stdout:Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pygments all 2.2.0+dfsg-1ubuntu0.2 [574 kB] 2024-01-27T23:34:02.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:02 smithi099 bash[16328]: cluster 2024-01-27T23:34:01.244715+0000 mgr.smithi099.hzjdah (mgr.14182) 239 : cluster [DBG] pgmap v213: 33 pgs: 7 creating+peering, 7 active+clean, 19 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:02.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:02 smithi099 bash[16328]: cluster 2024-01-27T23:34:01.574050+0000 mon.smithi099 (mon.0) 609 : cluster [DBG] mgrmap e19: smithi099.hzjdah(active, since 6m), standbys: smithi142.nlkoaq 2024-01-27T23:34:03.179 INFO:teuthology.orchestra.run.smithi099.stderr:debconf: unable to initialize frontend: Dialog 2024-01-27T23:34:03.179 INFO:teuthology.orchestra.run.smithi099.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-01-27T23:34:03.179 INFO:teuthology.orchestra.run.smithi099.stderr:debconf: falling back to frontend: Readline 2024-01-27T23:34:03.382 INFO:teuthology.orchestra.run.smithi099.stderr:debconf: unable to initialize frontend: Readline 2024-01-27T23:34:03.383 INFO:teuthology.orchestra.run.smithi099.stderr:debconf: (This frontend requires a controlling tty.) 2024-01-27T23:34:03.383 INFO:teuthology.orchestra.run.smithi099.stderr:debconf: falling back to frontend: Teletype 2024-01-27T23:34:03.388 INFO:teuthology.orchestra.run.smithi099.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-01-27T23:34:03.455 INFO:teuthology.orchestra.run.smithi099.stdout:Fetched 4,955 kB in 1s (5,827 kB/s) 2024-01-27T23:34:03.948 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package sgml-base. 2024-01-27T23:34:04.016 INFO:teuthology.orchestra.run.smithi099.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 172445 files and directories currently installed.) 2024-01-27T23:34:04.024 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../00-sgml-base_1.29_all.deb ... 2024-01-27T23:34:04.096 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking sgml-base (1.29) ... 2024-01-27T23:34:04.918 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:04 smithi099 bash[16328]: cluster 2024-01-27T23:34:03.245467+0000 mgr.smithi099.hzjdah (mgr.14182) 240 : cluster [DBG] pgmap v215: 33 pgs: 7 creating+peering, 25 active+clean, 1 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:05.007 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package xml-core. 2024-01-27T23:34:05.025 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../01-xml-core_0.18_all.deb ... 2024-01-27T23:34:05.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:04 smithi142 bash[20347]: cluster 2024-01-27T23:34:03.245467+0000 mgr.smithi099.hzjdah (mgr.14182) 240 : cluster [DBG] pgmap v215: 33 pgs: 7 creating+peering, 25 active+clean, 1 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:05.150 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking xml-core (0.18) ... 2024-01-27T23:34:06.030 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package docutils-common. 2024-01-27T23:34:06.045 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../02-docutils-common_0.14+dfsg-3_all.deb ... 2024-01-27T23:34:06.130 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking docutils-common (0.14+dfsg-3) ... 2024-01-27T23:34:06.772 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package libpaper1:amd64. 2024-01-27T23:34:06.789 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../03-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... 2024-01-27T23:34:06.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:06 smithi099 bash[16328]: cluster 2024-01-27T23:34:05.246114+0000 mgr.smithi099.hzjdah (mgr.14182) 241 : cluster [DBG] pgmap v216: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:06.922 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 2024-01-27T23:34:07.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:06 smithi142 bash[20347]: cluster 2024-01-27T23:34:05.246114+0000 mgr.smithi099.hzjdah (mgr.14182) 241 : cluster [DBG] pgmap v216: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:07.209 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package libpaper-utils. 2024-01-27T23:34:07.223 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../04-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... 2024-01-27T23:34:07.284 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... 2024-01-27T23:34:07.595 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package python3-dateutil. 2024-01-27T23:34:07.612 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../05-python3-dateutil_2.6.1-1_all.deb ... 2024-01-27T23:34:07.654 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking python3-dateutil (2.6.1-1) ... 2024-01-27T23:34:07.957 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package python3-roman. 2024-01-27T23:34:07.975 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../06-python3-roman_2.0.0-3_all.deb ... 2024-01-27T23:34:08.016 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking python3-roman (2.0.0-3) ... 2024-01-27T23:34:08.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:07 smithi142 bash[20347]: audit 2024-01-27T23:34:06.660731+0000 mon.smithi099 (mon.0) 610 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:08.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:07 smithi099 bash[16328]: audit 2024-01-27T23:34:06.660731+0000 mon.smithi099 (mon.0) 610 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:08.302 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package python3-docutils. 2024-01-27T23:34:08.318 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../07-python3-docutils_0.14+dfsg-3_all.deb ... 2024-01-27T23:34:08.354 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking python3-docutils (0.14+dfsg-3) ... 2024-01-27T23:34:09.049 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:08 smithi142 bash[20347]: cluster 2024-01-27T23:34:07.246886+0000 mgr.smithi099.hzjdah (mgr.14182) 242 : cluster [DBG] pgmap v217: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:09.319 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package python3-jmespath. 2024-01-27T23:34:09.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:08 smithi099 bash[16328]: cluster 2024-01-27T23:34:07.246886+0000 mgr.smithi099.hzjdah (mgr.14182) 242 : cluster [DBG] pgmap v217: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:09.336 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../08-python3-jmespath_0.9.3-1ubuntu1.1_all.deb ... 2024-01-27T23:34:09.377 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking python3-jmespath (0.9.3-1ubuntu1.1) ... 2024-01-27T23:34:09.714 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package python3-botocore. 2024-01-27T23:34:09.729 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../09-python3-botocore_1.16.19+repack-1ubuntu0.18.04.1_all.deb ... 2024-01-27T23:34:09.772 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking python3-botocore (1.16.19+repack-1ubuntu0.18.04.1) ... 2024-01-27T23:34:10.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: cluster 2024-01-27T23:34:09.247524+0000 mgr.smithi099.hzjdah (mgr.14182) 243 : cluster [DBG] pgmap v218: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:10.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: audit 2024-01-27T23:34:09.489148+0000 mon.smithi099 (mon.0) 611 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:10.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: audit 2024-01-27T23:34:09.490595+0000 mon.smithi099 (mon.0) 612 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:10.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: audit 2024-01-27T23:34:09.491773+0000 mon.smithi099 (mon.0) 613 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:34:10.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: audit 2024-01-27T23:34:09.496975+0000 mon.smithi099 (mon.0) 614 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:10.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: audit 2024-01-27T23:34:09.502053+0000 mon.smithi099 (mon.0) 615 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:34:10.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: cephadm 2024-01-27T23:34:09.511986+0000 mgr.smithi099.hzjdah (mgr.14182) 244 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-27T23:34:10.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: audit 2024-01-27T23:34:09.517291+0000 mon.smithi099 (mon.0) 616 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:10.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: audit 2024-01-27T23:34:09.518112+0000 mon.smithi099 (mon.0) 617 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi142.rzlqdl", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:34:10.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: audit 2024-01-27T23:34:09.522394+0000 mon.smithi099 (mon.0) 618 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi142.rzlqdl", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:34:10.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: audit 2024-01-27T23:34:09.528771+0000 mon.smithi099 (mon.0) 619 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:10.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: audit 2024-01-27T23:34:09.529797+0000 mon.smithi099 (mon.0) 620 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:10.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:10 smithi142 bash[20347]: cephadm 2024-01-27T23:34:09.530800+0000 mgr.smithi099.hzjdah (mgr.14182) 245 : cephadm [INF] Deploying daemon rgw.foorgw.smithi142.rzlqdl on smithi142 2024-01-27T23:34:10.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: cluster 2024-01-27T23:34:09.247524+0000 mgr.smithi099.hzjdah (mgr.14182) 243 : cluster [DBG] pgmap v218: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:10.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: audit 2024-01-27T23:34:09.489148+0000 mon.smithi099 (mon.0) 611 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: audit 2024-01-27T23:34:09.490595+0000 mon.smithi099 (mon.0) 612 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: audit 2024-01-27T23:34:09.491773+0000 mon.smithi099 (mon.0) 613 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: audit 2024-01-27T23:34:09.496975+0000 mon.smithi099 (mon.0) 614 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: audit 2024-01-27T23:34:09.502053+0000 mon.smithi099 (mon.0) 615 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: cephadm 2024-01-27T23:34:09.511986+0000 mgr.smithi099.hzjdah (mgr.14182) 244 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: audit 2024-01-27T23:34:09.517291+0000 mon.smithi099 (mon.0) 616 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: audit 2024-01-27T23:34:09.518112+0000 mon.smithi099 (mon.0) 617 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi142.rzlqdl", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: audit 2024-01-27T23:34:09.522394+0000 mon.smithi099 (mon.0) 618 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi142.rzlqdl", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: audit 2024-01-27T23:34:09.528771+0000 mon.smithi099 (mon.0) 619 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: audit 2024-01-27T23:34:09.529797+0000 mon.smithi099 (mon.0) 620 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:10.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:10 smithi099 bash[16328]: cephadm 2024-01-27T23:34:09.530800+0000 mgr.smithi099.hzjdah (mgr.14182) 245 : cephadm [INF] Deploying daemon rgw.foorgw.smithi142.rzlqdl on smithi142 2024-01-27T23:34:10.929 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package python3-s3transfer. 2024-01-27T23:34:10.947 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../10-python3-s3transfer_0.3.3-1ubuntu0.18.04.1_all.deb ... 2024-01-27T23:34:10.988 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking python3-s3transfer (0.3.3-1ubuntu0.18.04.1) ... 2024-01-27T23:34:11.366 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package python3-boto3. 2024-01-27T23:34:11.383 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../11-python3-boto3_1.4.2-1_all.deb ... 2024-01-27T23:34:11.424 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking python3-boto3 (1.4.2-1) ... 2024-01-27T23:34:11.770 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package python3-olefile. 2024-01-27T23:34:11.786 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../12-python3-olefile_0.45.1-1_all.deb ... 2024-01-27T23:34:11.829 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking python3-olefile (0.45.1-1) ... 2024-01-27T23:34:12.116 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package python3-pil:amd64. 2024-01-27T23:34:12.323 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../13-python3-pil_5.1.0-1ubuntu0.8_amd64.deb ... 2024-01-27T23:34:12.560 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking python3-pil:amd64 (5.1.0-1ubuntu0.8) ... 2024-01-27T23:34:13.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:12 smithi142 bash[20347]: cluster 2024-01-27T23:34:11.248243+0000 mgr.smithi099.hzjdah (mgr.14182) 246 : cluster [DBG] pgmap v219: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:13.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:12 smithi142 bash[20347]: audit 2024-01-27T23:34:11.798055+0000 mon.smithi099 (mon.0) 621 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:13.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:12 smithi142 bash[20347]: audit 2024-01-27T23:34:11.800367+0000 mon.smithi099 (mon.0) 622 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi099.zjroih", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:34:13.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:12 smithi142 bash[20347]: audit 2024-01-27T23:34:11.807074+0000 mon.smithi099 (mon.0) 623 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi099.zjroih", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:34:13.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:12 smithi142 bash[20347]: audit 2024-01-27T23:34:11.812865+0000 mon.smithi099 (mon.0) 624 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:13.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:12 smithi142 bash[20347]: audit 2024-01-27T23:34:11.814021+0000 mon.smithi099 (mon.0) 625 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:13.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:12 smithi142 bash[20347]: cephadm 2024-01-27T23:34:11.815101+0000 mgr.smithi099.hzjdah (mgr.14182) 247 : cephadm [INF] Deploying daemon rgw.foorgw.smithi099.zjroih on smithi099 2024-01-27T23:34:13.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:12 smithi099 bash[16328]: cluster 2024-01-27T23:34:11.248243+0000 mgr.smithi099.hzjdah (mgr.14182) 246 : cluster [DBG] pgmap v219: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:13.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:12 smithi099 bash[16328]: audit 2024-01-27T23:34:11.798055+0000 mon.smithi099 (mon.0) 621 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:13.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:12 smithi099 bash[16328]: audit 2024-01-27T23:34:11.800367+0000 mon.smithi099 (mon.0) 622 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi099.zjroih", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:34:13.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:12 smithi099 bash[16328]: audit 2024-01-27T23:34:11.807074+0000 mon.smithi099 (mon.0) 623 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi099.zjroih", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:34:13.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:12 smithi099 bash[16328]: audit 2024-01-27T23:34:11.812865+0000 mon.smithi099 (mon.0) 624 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:13.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:12 smithi099 bash[16328]: audit 2024-01-27T23:34:11.814021+0000 mon.smithi099 (mon.0) 625 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:13.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:12 smithi099 bash[16328]: cephadm 2024-01-27T23:34:11.815101+0000 mgr.smithi099.hzjdah (mgr.14182) 247 : cephadm [INF] Deploying daemon rgw.foorgw.smithi099.zjroih on smithi099 2024-01-27T23:34:13.323 INFO:teuthology.orchestra.run.smithi099.stdout:Selecting previously unselected package python3-pygments. 2024-01-27T23:34:13.341 INFO:teuthology.orchestra.run.smithi099.stdout:Preparing to unpack .../14-python3-pygments_2.2.0+dfsg-1ubuntu0.2_all.deb ... 2024-01-27T23:34:13.395 INFO:teuthology.orchestra.run.smithi099.stdout:Unpacking python3-pygments (2.2.0+dfsg-1ubuntu0.2) ... 2024-01-27T23:34:13.966 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 2024-01-27T23:34:14.512 INFO:teuthology.orchestra.run.smithi099.stdout:debconf: unable to initialize frontend: Dialog 2024-01-27T23:34:14.512 INFO:teuthology.orchestra.run.smithi099.stdout:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-01-27T23:34:14.512 INFO:teuthology.orchestra.run.smithi099.stdout:debconf: falling back to frontend: Readline 2024-01-27T23:34:14.722 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:34:14.722 INFO:teuthology.orchestra.run.smithi099.stdout:Creating config file /etc/papersize with new version 2024-01-27T23:34:14.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:14 smithi099 bash[16328]: cluster 2024-01-27T23:34:13.248704+0000 mgr.smithi099.hzjdah (mgr.14182) 248 : cluster [DBG] pgmap v220: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:14.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:14 smithi099 bash[16328]: cluster 2024-01-27T23:34:13.809676+0000 mon.smithi099 (mon.0) 626 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-01-27T23:34:14.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:14 smithi099 bash[16328]: audit 2024-01-27T23:34:13.815250+0000 mon.smithi142 (mon.1) 19 : audit [INF] from='client.? 172.21.15.142:0/622941513' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-27T23:34:14.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:14 smithi099 bash[16328]: audit 2024-01-27T23:34:13.816541+0000 mon.smithi099 (mon.0) 627 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-27T23:34:15.245 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... 2024-01-27T23:34:15.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:14 smithi142 bash[20347]: cluster 2024-01-27T23:34:13.248704+0000 mgr.smithi099.hzjdah (mgr.14182) 248 : cluster [DBG] pgmap v220: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:15.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:14 smithi142 bash[20347]: cluster 2024-01-27T23:34:13.809676+0000 mon.smithi099 (mon.0) 626 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-01-27T23:34:15.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:14 smithi142 bash[20347]: audit 2024-01-27T23:34:13.815250+0000 mon.smithi142 (mon.1) 19 : audit [INF] from='client.? 172.21.15.142:0/622941513' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-27T23:34:15.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:14 smithi142 bash[20347]: audit 2024-01-27T23:34:13.816541+0000 mon.smithi099 (mon.0) 627 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-27T23:34:15.706 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up python3-roman (2.0.0-3) ... 2024-01-27T23:34:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:14.812259+0000 mon.smithi099 (mon.0) 628 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-01-27T23:34:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: cluster 2024-01-27T23:34:14.812685+0000 mon.smithi099 (mon.0) 629 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-01-27T23:34:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.319237+0000 mon.smithi099 (mon.0) 630 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.324585+0000 mon.smithi099 (mon.0) 631 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.347863+0000 mon.smithi099 (mon.0) 632 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi099.nkguzr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-01-27T23:34:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.352372+0000 mon.smithi099 (mon.0) 633 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi099.nkguzr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-01-27T23:34:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.353645+0000 mon.smithi099 (mon.0) 634 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-01-27T23:34:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.359570+0000 mon.smithi099 (mon.0) 635 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-01-27T23:34:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.360908+0000 mon.smithi099 (mon.0) 636 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:16.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.411646+0000 mon.smithi099 (mon.0) 637 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-01-27T23:34:16.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.415837+0000 mon.smithi099 (mon.0) 638 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-01-27T23:34:16.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.472369+0000 mon.smithi099 (mon.0) 639 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi099.nkguzr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:34:16.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.478532+0000 mon.smithi099 (mon.0) 640 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi099.nkguzr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:34:16.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:15 smithi099 bash[16328]: audit 2024-01-27T23:34:15.486029+0000 mon.smithi099 (mon.0) 641 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:16.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:14.812259+0000 mon.smithi099 (mon.0) 628 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-01-27T23:34:16.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: cluster 2024-01-27T23:34:14.812685+0000 mon.smithi099 (mon.0) 629 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-01-27T23:34:16.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.319237+0000 mon.smithi099 (mon.0) 630 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:16.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.324585+0000 mon.smithi099 (mon.0) 631 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:16.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.347863+0000 mon.smithi099 (mon.0) 632 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi099.nkguzr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-01-27T23:34:16.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.352372+0000 mon.smithi099 (mon.0) 633 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi099.nkguzr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-01-27T23:34:16.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.353645+0000 mon.smithi099 (mon.0) 634 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-01-27T23:34:16.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.359570+0000 mon.smithi099 (mon.0) 635 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-01-27T23:34:16.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.360908+0000 mon.smithi099 (mon.0) 636 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:16.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.411646+0000 mon.smithi099 (mon.0) 637 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-01-27T23:34:16.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.415837+0000 mon.smithi099 (mon.0) 638 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-01-27T23:34:16.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.472369+0000 mon.smithi099 (mon.0) 639 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi099.nkguzr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:34:16.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.478532+0000 mon.smithi099 (mon.0) 640 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi099.nkguzr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:34:16.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:15 smithi142 bash[20347]: audit 2024-01-27T23:34:15.486029+0000 mon.smithi099 (mon.0) 641 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:16.843 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up python3-pil:amd64 (5.1.0-1ubuntu0.8) ... 2024-01-27T23:34:17.199 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:16 smithi099 bash[16328]: cluster 2024-01-27T23:34:15.249189+0000 mgr.smithi099.hzjdah (mgr.14182) 249 : cluster [DBG] pgmap v223: 65 pgs: 5 creating+peering, 27 unknown, 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:17.199 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:16 smithi099 bash[16328]: cephadm 2024-01-27T23:34:15.347410+0000 mgr.smithi099.hzjdah (mgr.14182) 250 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi099.nkguzr 2024-01-27T23:34:17.199 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:16 smithi099 bash[16328]: cephadm 2024-01-27T23:34:15.353189+0000 mgr.smithi099.hzjdah (mgr.14182) 251 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-01-27T23:34:17.199 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:16 smithi099 bash[16328]: cephadm 2024-01-27T23:34:15.471631+0000 mgr.smithi099.hzjdah (mgr.14182) 252 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-01-27T23:34:17.199 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:16 smithi099 bash[16328]: cephadm 2024-01-27T23:34:15.471792+0000 mgr.smithi099.hzjdah (mgr.14182) 253 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi099.nkguzr-rgw 2024-01-27T23:34:17.199 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:16 smithi099 bash[16328]: cephadm 2024-01-27T23:34:15.487080+0000 mgr.smithi099.hzjdah (mgr.14182) 254 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi099.nkguzr on smithi099 2024-01-27T23:34:17.200 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:16 smithi099 bash[16328]: cluster 2024-01-27T23:34:15.831331+0000 mon.smithi099 (mon.0) 642 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-01-27T23:34:17.200 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:16 smithi099 bash[16328]: audit 2024-01-27T23:34:15.839031+0000 mon.smithi142 (mon.1) 20 : audit [INF] from='client.? 172.21.15.142:0/622941513' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-27T23:34:17.200 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:16 smithi099 bash[16328]: audit 2024-01-27T23:34:15.839790+0000 mon.smithi099 (mon.0) 643 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-27T23:34:17.293 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up python3-olefile (0.45.1-1) ... 2024-01-27T23:34:17.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:16 smithi142 bash[20347]: cluster 2024-01-27T23:34:15.249189+0000 mgr.smithi099.hzjdah (mgr.14182) 249 : cluster [DBG] pgmap v223: 65 pgs: 5 creating+peering, 27 unknown, 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:34:17.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:16 smithi142 bash[20347]: cephadm 2024-01-27T23:34:15.347410+0000 mgr.smithi099.hzjdah (mgr.14182) 250 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi099.nkguzr 2024-01-27T23:34:17.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:16 smithi142 bash[20347]: cephadm 2024-01-27T23:34:15.353189+0000 mgr.smithi099.hzjdah (mgr.14182) 251 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-01-27T23:34:17.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:16 smithi142 bash[20347]: cephadm 2024-01-27T23:34:15.471631+0000 mgr.smithi099.hzjdah (mgr.14182) 252 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-01-27T23:34:17.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:16 smithi142 bash[20347]: cephadm 2024-01-27T23:34:15.471792+0000 mgr.smithi099.hzjdah (mgr.14182) 253 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi099.nkguzr-rgw 2024-01-27T23:34:17.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:16 smithi142 bash[20347]: cephadm 2024-01-27T23:34:15.487080+0000 mgr.smithi099.hzjdah (mgr.14182) 254 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi099.nkguzr on smithi099 2024-01-27T23:34:17.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:16 smithi142 bash[20347]: cluster 2024-01-27T23:34:15.831331+0000 mon.smithi099 (mon.0) 642 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-01-27T23:34:17.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:16 smithi142 bash[20347]: audit 2024-01-27T23:34:15.839031+0000 mon.smithi142 (mon.1) 20 : audit [INF] from='client.? 172.21.15.142:0/622941513' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-27T23:34:17.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:16 smithi142 bash[20347]: audit 2024-01-27T23:34:15.839790+0000 mon.smithi099 (mon.0) 643 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-27T23:34:17.562 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up sgml-base (1.29) ... 2024-01-27T23:34:18.132 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up python3-jmespath (0.9.3-1ubuntu1.1) ... 2024-01-27T23:34:18.282 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:17 smithi099 bash[16328]: audit 2024-01-27T23:34:16.834862+0000 mon.smithi099 (mon.0) 644 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-01-27T23:34:18.282 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:17 smithi099 bash[16328]: cluster 2024-01-27T23:34:16.835086+0000 mon.smithi099 (mon.0) 645 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-01-27T23:34:18.299 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:17 smithi142 bash[20347]: audit 2024-01-27T23:34:16.834862+0000 mon.smithi099 (mon.0) 644 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-01-27T23:34:18.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:17 smithi142 bash[20347]: cluster 2024-01-27T23:34:16.835086+0000 mon.smithi099 (mon.0) 645 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-01-27T23:34:18.493 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up xml-core (0.18) ... 2024-01-27T23:34:19.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: cluster 2024-01-27T23:34:17.249760+0000 mgr.smithi099.hzjdah (mgr.14182) 255 : cluster [DBG] pgmap v226: 97 pgs: 13 creating+peering, 37 unknown, 47 active+clean; 965 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 1 op/s 2024-01-27T23:34:19.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: cluster 2024-01-27T23:34:17.850147+0000 mon.smithi099 (mon.0) 646 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-01-27T23:34:19.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: audit 2024-01-27T23:34:17.852486+0000 mon.smithi142 (mon.1) 21 : audit [INF] from='client.? 172.21.15.142:0/622941513' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:34:19.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: audit 2024-01-27T23:34:17.859463+0000 mon.smithi099 (mon.0) 647 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:34:19.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: audit 2024-01-27T23:34:17.859708+0000 mon.smithi099 (mon.0) 648 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:34:19.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: audit 2024-01-27T23:34:18.022053+0000 mon.smithi099 (mon.0) 649 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:19.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: audit 2024-01-27T23:34:18.576485+0000 mon.smithi099 (mon.0) 650 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:19.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: audit 2024-01-27T23:34:18.585342+0000 mon.smithi099 (mon.0) 651 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:19.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: audit 2024-01-27T23:34:18.851101+0000 mon.smithi099 (mon.0) 652 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-27T23:34:19.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: audit 2024-01-27T23:34:18.851426+0000 mon.smithi099 (mon.0) 653 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-27T23:34:19.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:18 smithi142 bash[20347]: cluster 2024-01-27T23:34:18.851767+0000 mon.smithi099 (mon.0) 654 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-01-27T23:34:19.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: cluster 2024-01-27T23:34:17.249760+0000 mgr.smithi099.hzjdah (mgr.14182) 255 : cluster [DBG] pgmap v226: 97 pgs: 13 creating+peering, 37 unknown, 47 active+clean; 965 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 1 op/s 2024-01-27T23:34:19.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: cluster 2024-01-27T23:34:17.850147+0000 mon.smithi099 (mon.0) 646 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-01-27T23:34:19.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: audit 2024-01-27T23:34:17.852486+0000 mon.smithi142 (mon.1) 21 : audit [INF] from='client.? 172.21.15.142:0/622941513' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:34:19.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: audit 2024-01-27T23:34:17.859463+0000 mon.smithi099 (mon.0) 647 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:34:19.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: audit 2024-01-27T23:34:17.859708+0000 mon.smithi099 (mon.0) 648 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:34:19.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: audit 2024-01-27T23:34:18.022053+0000 mon.smithi099 (mon.0) 649 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:19.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: audit 2024-01-27T23:34:18.576485+0000 mon.smithi099 (mon.0) 650 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:19.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: audit 2024-01-27T23:34:18.585342+0000 mon.smithi099 (mon.0) 651 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:19.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: audit 2024-01-27T23:34:18.851101+0000 mon.smithi099 (mon.0) 652 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-27T23:34:19.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: audit 2024-01-27T23:34:18.851426+0000 mon.smithi099 (mon.0) 653 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-27T23:34:19.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:18 smithi099 bash[16328]: cluster 2024-01-27T23:34:18.851767+0000 mon.smithi099 (mon.0) 654 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-01-27T23:34:19.610 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up python3-dateutil (2.6.1-1) ... 2024-01-27T23:34:19.954 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up python3-pygments (2.2.0+dfsg-1ubuntu0.2) ... 2024-01-27T23:34:20.117 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:19 smithi099 bash[16328]: cephadm 2024-01-27T23:34:18.602213+0000 mgr.smithi099.hzjdah (mgr.14182) 256 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.uxqsgz on smithi142 2024-01-27T23:34:20.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:19 smithi142 bash[20347]: cephadm 2024-01-27T23:34:18.602213+0000 mgr.smithi099.hzjdah (mgr.14182) 256 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.uxqsgz on smithi142 2024-01-27T23:34:20.480 INFO:teuthology.orchestra.run.smithi099.stdout:Processing triggers for libc-bin (2.27-3ubuntu1.6) ... 2024-01-27T23:34:20.611 INFO:teuthology.orchestra.run.smithi099.stdout:Processing triggers for man-db (2.8.3-2ubuntu0.1) ... 2024-01-27T23:34:21.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:20 smithi142 bash[20347]: cluster 2024-01-27T23:34:19.250466+0000 mgr.smithi099.hzjdah (mgr.14182) 257 : cluster [DBG] pgmap v229: 129 pgs: 17 creating+peering, 39 unknown, 73 active+clean; 965 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 1 op/s 2024-01-27T23:34:21.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:20 smithi142 bash[20347]: cluster 2024-01-27T23:34:19.871660+0000 mon.smithi099 (mon.0) 655 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-01-27T23:34:21.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:20 smithi142 bash[20347]: audit 2024-01-27T23:34:19.873308+0000 mon.smithi099 (mon.0) 656 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:34:21.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:20 smithi142 bash[20347]: audit 2024-01-27T23:34:19.883175+0000 mon.smithi142 (mon.1) 22 : audit [INF] from='client.? 172.21.15.142:0/1816420782' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:34:21.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:20 smithi142 bash[20347]: audit 2024-01-27T23:34:19.884145+0000 mon.smithi099 (mon.0) 657 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:34:21.319 INFO:teuthology.orchestra.run.smithi099.stdout:Processing triggers for shared-mime-info (1.9-2) ... 2024-01-27T23:34:21.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:20 smithi099 bash[16328]: cluster 2024-01-27T23:34:19.250466+0000 mgr.smithi099.hzjdah (mgr.14182) 257 : cluster [DBG] pgmap v229: 129 pgs: 17 creating+peering, 39 unknown, 73 active+clean; 965 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 1 op/s 2024-01-27T23:34:21.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:20 smithi099 bash[16328]: cluster 2024-01-27T23:34:19.871660+0000 mon.smithi099 (mon.0) 655 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-01-27T23:34:21.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:20 smithi099 bash[16328]: audit 2024-01-27T23:34:19.873308+0000 mon.smithi099 (mon.0) 656 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:34:21.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:20 smithi099 bash[16328]: audit 2024-01-27T23:34:19.883175+0000 mon.smithi142 (mon.1) 22 : audit [INF] from='client.? 172.21.15.142:0/1816420782' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:34:21.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:20 smithi099 bash[16328]: audit 2024-01-27T23:34:19.884145+0000 mon.smithi099 (mon.0) 657 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:34:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:21 smithi142 bash[20347]: audit 2024-01-27T23:34:20.876467+0000 mon.smithi099 (mon.0) 658 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-27T23:34:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:21 smithi142 bash[20347]: audit 2024-01-27T23:34:20.877070+0000 mon.smithi099 (mon.0) 659 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-27T23:34:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:21 smithi142 bash[20347]: cluster 2024-01-27T23:34:20.877227+0000 mon.smithi099 (mon.0) 660 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-01-27T23:34:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:21 smithi142 bash[20347]: audit 2024-01-27T23:34:20.884078+0000 mon.smithi142 (mon.1) 23 : audit [INF] from='client.? 172.21.15.142:0/1816420782' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:34:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:21 smithi142 bash[20347]: audit 2024-01-27T23:34:20.890842+0000 mon.smithi099 (mon.0) 661 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:34:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:21 smithi142 bash[20347]: audit 2024-01-27T23:34:20.901428+0000 mon.smithi099 (mon.0) 662 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:34:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:21 smithi142 bash[20347]: cluster 2024-01-27T23:34:21.251226+0000 mgr.smithi099.hzjdah (mgr.14182) 258 : cluster [DBG] pgmap v232: 161 pgs: 19 creating+peering, 46 unknown, 96 active+clean; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 1.2 KiB/s wr, 5 op/s 2024-01-27T23:34:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:21 smithi142 bash[20347]: audit 2024-01-27T23:34:21.878775+0000 mon.smithi099 (mon.0) 663 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:34:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:21 smithi142 bash[20347]: audit 2024-01-27T23:34:21.878994+0000 mon.smithi099 (mon.0) 664 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:34:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:21 smithi142 bash[20347]: cluster 2024-01-27T23:34:21.879200+0000 mon.smithi099 (mon.0) 665 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-01-27T23:34:22.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:21 smithi099 bash[16328]: audit 2024-01-27T23:34:20.876467+0000 mon.smithi099 (mon.0) 658 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-27T23:34:22.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:21 smithi099 bash[16328]: audit 2024-01-27T23:34:20.877070+0000 mon.smithi099 (mon.0) 659 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-27T23:34:22.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:21 smithi099 bash[16328]: cluster 2024-01-27T23:34:20.877227+0000 mon.smithi099 (mon.0) 660 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-01-27T23:34:22.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:21 smithi099 bash[16328]: audit 2024-01-27T23:34:20.884078+0000 mon.smithi142 (mon.1) 23 : audit [INF] from='client.? 172.21.15.142:0/1816420782' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:34:22.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:21 smithi099 bash[16328]: audit 2024-01-27T23:34:20.890842+0000 mon.smithi099 (mon.0) 661 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:34:22.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:21 smithi099 bash[16328]: audit 2024-01-27T23:34:20.901428+0000 mon.smithi099 (mon.0) 662 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:34:22.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:21 smithi099 bash[16328]: cluster 2024-01-27T23:34:21.251226+0000 mgr.smithi099.hzjdah (mgr.14182) 258 : cluster [DBG] pgmap v232: 161 pgs: 19 creating+peering, 46 unknown, 96 active+clean; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 1.2 KiB/s wr, 5 op/s 2024-01-27T23:34:22.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:21 smithi099 bash[16328]: audit 2024-01-27T23:34:21.878775+0000 mon.smithi099 (mon.0) 663 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:34:22.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:21 smithi099 bash[16328]: audit 2024-01-27T23:34:21.878994+0000 mon.smithi099 (mon.0) 664 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.rzlqdl' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:34:22.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:21 smithi099 bash[16328]: cluster 2024-01-27T23:34:21.879200+0000 mon.smithi099 (mon.0) 665 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-01-27T23:34:23.147 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: cephadm 2024-01-27T23:34:22.646467+0000 mgr.smithi099.hzjdah (mgr.14182) 259 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.147 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:23.147 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.147 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.147 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:23.147 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.147 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.uxqsgz ... 2024-01-27T23:34:23.147 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.uxqsgz ... 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: cephadm 2024-01-27T23:34:22.647013+0000 mgr.smithi099.hzjdah (mgr.14182) 260 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: audit 2024-01-27T23:34:22.647657+0000 mon.smithi099 (mon.0) 666 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.uxqsgz"}]: dispatch 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: cephadm 2024-01-27T23:34:22.649265+0000 mgr.smithi099.hzjdah (mgr.14182) 261 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.uxqsgz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.149 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.150 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:23.150 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.150 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.uxqsgz ... 2024-01-27T23:34:23.150 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.150 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:23.150 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:23.150 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:23.150 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.150 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:22 smithi099 bash[16328]: cephadm 2024-01-27T23:34:22.654116+0000 mgr.smithi099.hzjdah (mgr.14182) 262 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.talnaq on smithi099 2024-01-27T23:34:23.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: cephadm 2024-01-27T23:34:22.646467+0000 mgr.smithi099.hzjdah (mgr.14182) 259 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.uxqsgz ... 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:23.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.uxqsgz ... 2024-01-27T23:34:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: cephadm 2024-01-27T23:34:22.647013+0000 mgr.smithi099.hzjdah (mgr.14182) 260 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: audit 2024-01-27T23:34:22.647657+0000 mon.smithi099 (mon.0) 666 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.uxqsgz"}]: dispatch 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: cephadm 2024-01-27T23:34:22.649265+0000 mgr.smithi099.hzjdah (mgr.14182) 261 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.uxqsgz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uxqsgz 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uxqsgz 2024-01-27T23:34:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.uxqsgz ... 2024-01-27T23:34:23.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:23.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:23.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:23.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:23.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:22 smithi142 bash[20347]: cephadm 2024-01-27T23:34:22.654116+0000 mgr.smithi099.hzjdah (mgr.14182) 262 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.talnaq on smithi099 2024-01-27T23:34:24.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:24 smithi142 bash[20347]: audit 2024-01-27T23:34:23.039401+0000 mon.smithi099 (mon.0) 667 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:24.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:24 smithi142 bash[20347]: cluster 2024-01-27T23:34:23.252404+0000 mgr.smithi099.hzjdah (mgr.14182) 263 : cluster [DBG] pgmap v234: 161 pgs: 11 creating+peering, 6 unknown, 144 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 42 KiB/s rd, 3.0 KiB/s wr, 89 op/s 2024-01-27T23:34:24.329 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:24 smithi099 bash[16328]: audit 2024-01-27T23:34:23.039401+0000 mon.smithi099 (mon.0) 667 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:24.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:24 smithi099 bash[16328]: cluster 2024-01-27T23:34:23.252404+0000 mgr.smithi099.hzjdah (mgr.14182) 263 : cluster [DBG] pgmap v234: 161 pgs: 11 creating+peering, 6 unknown, 144 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 42 KiB/s rd, 3.0 KiB/s wr, 89 op/s 2024-01-27T23:34:26.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:26 smithi099 bash[16328]: cluster 2024-01-27T23:34:25.253574+0000 mgr.smithi099.hzjdah (mgr.14182) 264 : cluster [DBG] pgmap v235: 161 pgs: 7 creating+peering, 154 active+clean; 3.4 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 76 KiB/s rd, 4.8 KiB/s wr, 159 op/s 2024-01-27T23:34:26.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:26 smithi142 bash[20347]: cluster 2024-01-27T23:34:25.253574+0000 mgr.smithi099.hzjdah (mgr.14182) 264 : cluster [DBG] pgmap v235: 161 pgs: 7 creating+peering, 154 active+clean; 3.4 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 76 KiB/s rd, 4.8 KiB/s wr, 159 op/s 2024-01-27T23:34:27.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: cephadm 2024-01-27T23:34:26.692602+0000 mgr.smithi099.hzjdah (mgr.14182) 265 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.talnaq ... 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:27.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.talnaq ... 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: cephadm 2024-01-27T23:34:26.693110+0000 mgr.smithi099.hzjdah (mgr.14182) 266 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: audit 2024-01-27T23:34:26.693684+0000 mon.smithi099 (mon.0) 668 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.talnaq"}]: dispatch 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: cephadm 2024-01-27T23:34:26.695103+0000 mgr.smithi099.hzjdah (mgr.14182) 267 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.talnaq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.talnaq ... 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: audit 2024-01-27T23:34:26.704748+0000 mon.smithi099 (mon.0) 669 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:27.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: cephadm 2024-01-27T23:34:26.705362+0000 mgr.smithi099.hzjdah (mgr.14182) 268 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.qxlrti on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:27.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: cephadm 2024-01-27T23:34:26.708861+0000 mgr.smithi099.hzjdah (mgr.14182) 269 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.pvqjuk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:27.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: cluster 2024-01-27T23:34:26.710224+0000 mgr.smithi099.hzjdah (mgr.14182) 270 : cluster [DBG] pgmap v236: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 109 KiB/s rd, 5.7 KiB/s wr, 226 op/s 2024-01-27T23:34:27.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:27 smithi099 bash[16328]: audit 2024-01-27T23:34:26.710430+0000 mon.smithi099 (mon.0) 670 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: cephadm 2024-01-27T23:34:26.692602+0000 mgr.smithi099.hzjdah (mgr.14182) 265 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.talnaq ... 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.talnaq ... 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:27.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: cephadm 2024-01-27T23:34:26.693110+0000 mgr.smithi099.hzjdah (mgr.14182) 266 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: audit 2024-01-27T23:34:26.693684+0000 mon.smithi099 (mon.0) 668 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.talnaq"}]: dispatch 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: cephadm 2024-01-27T23:34:26.695103+0000 mgr.smithi099.hzjdah (mgr.14182) 267 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.talnaq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-talnaq 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.talnaq 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.talnaq ... 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:27.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:27.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: audit 2024-01-27T23:34:26.704748+0000 mon.smithi099 (mon.0) 669 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:27.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: cephadm 2024-01-27T23:34:26.705362+0000 mgr.smithi099.hzjdah (mgr.14182) 268 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.qxlrti on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:27.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: cephadm 2024-01-27T23:34:26.708861+0000 mgr.smithi099.hzjdah (mgr.14182) 269 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.pvqjuk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:27.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: cluster 2024-01-27T23:34:26.710224+0000 mgr.smithi099.hzjdah (mgr.14182) 270 : cluster [DBG] pgmap v236: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 109 KiB/s rd, 5.7 KiB/s wr, 226 op/s 2024-01-27T23:34:27.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:27 smithi142 bash[20347]: audit 2024-01-27T23:34:26.710430+0000 mon.smithi099 (mon.0) 670 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:34:28.579 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:28 smithi099 bash[16328]: cluster 2024-01-27T23:34:27.701395+0000 mon.smithi099 (mon.0) 671 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:34:28.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:28 smithi099 bash[16328]: audit 2024-01-27T23:34:28.054660+0000 mon.smithi099 (mon.0) 672 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:28.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:28 smithi142 bash[20347]: cluster 2024-01-27T23:34:27.701395+0000 mon.smithi099 (mon.0) 671 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:34:28.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:28 smithi142 bash[20347]: audit 2024-01-27T23:34:28.054660+0000 mon.smithi099 (mon.0) 672 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:29.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:29 smithi142 bash[20347]: cluster 2024-01-27T23:34:28.711729+0000 mgr.smithi099.hzjdah (mgr.14182) 271 : cluster [DBG] pgmap v237: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 KiB/s rd, 4.8 KiB/s wr, 197 op/s 2024-01-27T23:34:29.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:29 smithi099 bash[16328]: cluster 2024-01-27T23:34:28.711729+0000 mgr.smithi099.hzjdah (mgr.14182) 271 : cluster [DBG] pgmap v237: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 KiB/s rd, 4.8 KiB/s wr, 197 op/s 2024-01-27T23:34:31.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:31 smithi099 bash[16328]: cluster 2024-01-27T23:34:30.713081+0000 mgr.smithi099.hzjdah (mgr.14182) 272 : cluster [DBG] pgmap v238: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 79 KiB/s rd, 4.0 KiB/s wr, 163 op/s 2024-01-27T23:34:32.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:31 smithi142 bash[20347]: cluster 2024-01-27T23:34:30.713081+0000 mgr.smithi099.hzjdah (mgr.14182) 272 : cluster [DBG] pgmap v238: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 79 KiB/s rd, 4.0 KiB/s wr, 163 op/s 2024-01-27T23:34:33.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:33 smithi099 bash[16328]: audit 2024-01-27T23:34:32.580973+0000 mon.smithi099 (mon.0) 673 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:33.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:33 smithi099 bash[16328]: cluster 2024-01-27T23:34:32.714674+0000 mgr.smithi099.hzjdah (mgr.14182) 273 : cluster [DBG] pgmap v239: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 68 KiB/s rd, 3.5 KiB/s wr, 141 op/s 2024-01-27T23:34:33.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:33 smithi099 bash[16328]: audit 2024-01-27T23:34:32.860530+0000 mon.smithi099 (mon.0) 674 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:33.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:33 smithi099 bash[16328]: audit 2024-01-27T23:34:33.139571+0000 mon.smithi099 (mon.0) 675 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:33.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:33 smithi099 bash[16328]: audit 2024-01-27T23:34:33.141050+0000 mon.smithi099 (mon.0) 676 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:34:33.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:33 smithi099 bash[16328]: audit 2024-01-27T23:34:33.559095+0000 mon.smithi099 (mon.0) 677 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:33.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:33 smithi099 bash[16328]: audit 2024-01-27T23:34:33.567635+0000 mon.smithi099 (mon.0) 678 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:33.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:33 smithi099 bash[16328]: audit 2024-01-27T23:34:33.576492+0000 mon.smithi099 (mon.0) 679 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:34.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:33 smithi142 bash[20347]: audit 2024-01-27T23:34:32.580973+0000 mon.smithi099 (mon.0) 673 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:34.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:33 smithi142 bash[20347]: cluster 2024-01-27T23:34:32.714674+0000 mgr.smithi099.hzjdah (mgr.14182) 273 : cluster [DBG] pgmap v239: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 68 KiB/s rd, 3.5 KiB/s wr, 141 op/s 2024-01-27T23:34:34.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:33 smithi142 bash[20347]: audit 2024-01-27T23:34:32.860530+0000 mon.smithi099 (mon.0) 674 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:34.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:33 smithi142 bash[20347]: audit 2024-01-27T23:34:33.139571+0000 mon.smithi099 (mon.0) 675 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:34.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:33 smithi142 bash[20347]: audit 2024-01-27T23:34:33.141050+0000 mon.smithi099 (mon.0) 676 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:34:34.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:33 smithi142 bash[20347]: audit 2024-01-27T23:34:33.559095+0000 mon.smithi099 (mon.0) 677 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:34.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:33 smithi142 bash[20347]: audit 2024-01-27T23:34:33.567635+0000 mon.smithi099 (mon.0) 678 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:34.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:33 smithi142 bash[20347]: audit 2024-01-27T23:34:33.576492+0000 mon.smithi099 (mon.0) 679 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:35.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:34 smithi142 bash[20347]: cephadm 2024-01-27T23:34:33.149386+0000 mgr.smithi099.hzjdah (mgr.14182) 274 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-27T23:34:35.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:34 smithi142 bash[20347]: cluster 2024-01-27T23:34:33.578673+0000 mgr.smithi099.hzjdah (mgr.14182) 275 : cluster [DBG] pgmap v240: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 55 KiB/s rd, 2.9 KiB/s wr, 113 op/s 2024-01-27T23:34:35.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:34 smithi142 bash[20347]: audit 2024-01-27T23:34:33.589486+0000 mon.smithi099 (mon.0) 680 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:34:35.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:34 smithi142 bash[20347]: audit 2024-01-27T23:34:33.606876+0000 mon.smithi099 (mon.0) 681 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:35.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:34 smithi142 bash[20347]: cephadm 2024-01-27T23:34:33.611813+0000 mgr.smithi099.hzjdah (mgr.14182) 276 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.uprksq on smithi142 2024-01-27T23:34:35.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:34 smithi142 bash[20347]: cluster 2024-01-27T23:34:34.580160+0000 mon.smithi099 (mon.0) 682 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:34:35.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:34 smithi142 bash[20347]: cluster 2024-01-27T23:34:34.580234+0000 mon.smithi099 (mon.0) 683 : cluster [INF] Cluster is now healthy 2024-01-27T23:34:35.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:34 smithi099 bash[16328]: cephadm 2024-01-27T23:34:33.149386+0000 mgr.smithi099.hzjdah (mgr.14182) 274 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-27T23:34:35.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:34 smithi099 bash[16328]: cluster 2024-01-27T23:34:33.578673+0000 mgr.smithi099.hzjdah (mgr.14182) 275 : cluster [DBG] pgmap v240: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 55 KiB/s rd, 2.9 KiB/s wr, 113 op/s 2024-01-27T23:34:35.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:34 smithi099 bash[16328]: audit 2024-01-27T23:34:33.589486+0000 mon.smithi099 (mon.0) 680 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:34:35.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:34 smithi099 bash[16328]: audit 2024-01-27T23:34:33.606876+0000 mon.smithi099 (mon.0) 681 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:35.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:34 smithi099 bash[16328]: cephadm 2024-01-27T23:34:33.611813+0000 mgr.smithi099.hzjdah (mgr.14182) 276 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.uprksq on smithi142 2024-01-27T23:34:35.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:34 smithi099 bash[16328]: cluster 2024-01-27T23:34:34.580160+0000 mon.smithi099 (mon.0) 682 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:34:35.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:34 smithi099 bash[16328]: cluster 2024-01-27T23:34:34.580234+0000 mon.smithi099 (mon.0) 683 : cluster [INF] Cluster is now healthy 2024-01-27T23:34:36.965 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:36 smithi142 bash[20347]: cluster 2024-01-27T23:34:35.579327+0000 mgr.smithi099.hzjdah (mgr.14182) 277 : cluster [DBG] pgmap v241: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 1.5 KiB/s wr, 60 op/s 2024-01-27T23:34:37.079 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:36 smithi099 bash[16328]: cluster 2024-01-27T23:34:35.579327+0000 mgr.smithi099.hzjdah (mgr.14182) 277 : cluster [DBG] pgmap v241: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 1.5 KiB/s wr, 60 op/s 2024-01-27T23:34:37.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:37 smithi142 bash[20347]: audit 2024-01-27T23:34:37.490339+0000 mon.smithi099 (mon.0) 684 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.uprksq"}]: dispatch 2024-01-27T23:34:37.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:37 smithi099 bash[16328]: audit 2024-01-27T23:34:37.490339+0000 mon.smithi099 (mon.0) 684 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.uprksq"}]: dispatch 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: cephadm 2024-01-27T23:34:37.488874+0000 mgr.smithi099.hzjdah (mgr.14182) 278 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.uprksq ... 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:39.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:39.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:34:39.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:39.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:34:39.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:39.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:34:39.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.uprksq ... 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: cephadm 2024-01-27T23:34:37.489577+0000 mgr.smithi099.hzjdah (mgr.14182) 279 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: cephadm 2024-01-27T23:34:37.491768+0000 mgr.smithi099.hzjdah (mgr.14182) 280 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.uprksq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.uprksq ... 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: cephadm 2024-01-27T23:34:37.496835+0000 mgr.smithi099.hzjdah (mgr.14182) 281 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.ybipnl on smithi099 2024-01-27T23:34:39.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:38 smithi142 bash[20347]: cluster 2024-01-27T23:34:37.580365+0000 mgr.smithi099.hzjdah (mgr.14182) 282 : cluster [DBG] pgmap v242: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 188 B/s wr, 2 op/s 2024-01-27T23:34:39.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: cephadm 2024-01-27T23:34:37.488874+0000 mgr.smithi099.hzjdah (mgr.14182) 278 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:39.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.uprksq ... 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:34:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.uprksq ... 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: cephadm 2024-01-27T23:34:37.489577+0000 mgr.smithi099.hzjdah (mgr.14182) 279 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: cephadm 2024-01-27T23:34:37.491768+0000 mgr.smithi099.hzjdah (mgr.14182) 280 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.uprksq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-uprksq 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.uprksq 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.uprksq ... 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: cephadm 2024-01-27T23:34:37.496835+0000 mgr.smithi099.hzjdah (mgr.14182) 281 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.ybipnl on smithi099 2024-01-27T23:34:39.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:38 smithi099 bash[16328]: cluster 2024-01-27T23:34:37.580365+0000 mgr.smithi099.hzjdah (mgr.14182) 282 : cluster [DBG] pgmap v242: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 188 B/s wr, 2 op/s 2024-01-27T23:34:40.805 INFO:teuthology.orchestra.run.smithi099.stdout:Processing triggers for sgml-base (1.29) ... 2024-01-27T23:34:40.901 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:40 smithi099 bash[16328]: cluster 2024-01-27T23:34:39.581160+0000 mgr.smithi099.hzjdah (mgr.14182) 283 : cluster [DBG] pgmap v243: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 188 B/s wr, 2 op/s 2024-01-27T23:34:40.927 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up docutils-common (0.14+dfsg-3) ... 2024-01-27T23:34:41.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:40 smithi142 bash[20347]: cluster 2024-01-27T23:34:39.581160+0000 mgr.smithi099.hzjdah (mgr.14182) 283 : cluster [DBG] pgmap v243: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 188 B/s wr, 2 op/s 2024-01-27T23:34:41.418 INFO:teuthology.orchestra.run.smithi099.stdout:Processing triggers for sgml-base (1.29) ... 2024-01-27T23:34:41.550 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up python3-docutils (0.14+dfsg-3) ... 2024-01-27T23:34:41.855 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 2024-01-27T23:34:41.909 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 2024-01-27T23:34:41.940 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode 2024-01-27T23:34:41.982 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode 2024-01-27T23:34:42.033 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 2024-01-27T23:34:42.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:41 smithi142 bash[20347]: audit 2024-01-27T23:34:41.397104+0000 mon.smithi099 (mon.0) 685 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.ybipnl"}]: dispatch 2024-01-27T23:34:42.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:41 smithi142 bash[20347]: audit 2024-01-27T23:34:41.414587+0000 mon.smithi099 (mon.0) 686 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:34:42.075 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 2024-01-27T23:34:42.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:41 smithi099 bash[16328]: audit 2024-01-27T23:34:41.397104+0000 mon.smithi099 (mon.0) 685 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.ybipnl"}]: dispatch 2024-01-27T23:34:42.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:41 smithi099 bash[16328]: audit 2024-01-27T23:34:41.414587+0000 mon.smithi099 (mon.0) 686 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:34:42.108 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 2024-01-27T23:34:42.125 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 2024-01-27T23:34:42.151 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 2024-01-27T23:34:42.177 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 2024-01-27T23:34:42.202 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 2024-01-27T23:34:42.227 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 2024-01-27T23:34:42.253 INFO:teuthology.orchestra.run.smithi099.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 2024-01-27T23:34:42.660 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up python3-botocore (1.16.19+repack-1ubuntu0.18.04.1) ... 2024-01-27T23:34:43.037 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up python3-s3transfer (0.3.3-1ubuntu0.18.04.1) ... 2024-01-27T23:34:43.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: cephadm 2024-01-27T23:34:41.396073+0000 mgr.smithi099.hzjdah (mgr.14182) 284 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.ybipnl ... 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.ybipnl ... 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: cephadm 2024-01-27T23:34:41.396520+0000 mgr.smithi099.hzjdah (mgr.14182) 285 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: cephadm 2024-01-27T23:34:41.398519+0000 mgr.smithi099.hzjdah (mgr.14182) 286 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.ybipnl on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.ybipnl ... 2024-01-27T23:34:43.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: cephadm 2024-01-27T23:34:41.402598+0000 mgr.smithi099.hzjdah (mgr.14182) 287 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.xgjywz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: cephadm 2024-01-27T23:34:41.405540+0000 mgr.smithi099.hzjdah (mgr.14182) 288 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: cluster 2024-01-27T23:34:41.406675+0000 mgr.smithi099.hzjdah (mgr.14182) 289 : cluster [DBG] pgmap v244: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 191 B/s wr, 2 op/s 2024-01-27T23:34:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:42 smithi142 bash[20347]: cluster 2024-01-27T23:34:41.611045+0000 mon.smithi099 (mon.0) 687 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:34:43.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: cephadm 2024-01-27T23:34:41.396073+0000 mgr.smithi099.hzjdah (mgr.14182) 284 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:43.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.ybipnl ... 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.ybipnl ... 2024-01-27T23:34:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: cephadm 2024-01-27T23:34:41.396520+0000 mgr.smithi099.hzjdah (mgr.14182) 285 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: cephadm 2024-01-27T23:34:41.398519+0000 mgr.smithi099.hzjdah (mgr.14182) 286 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.ybipnl on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ybipnl 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ybipnl 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.ybipnl ... 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:43.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: cephadm 2024-01-27T23:34:41.402598+0000 mgr.smithi099.hzjdah (mgr.14182) 287 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.xgjywz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:43.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: cephadm 2024-01-27T23:34:41.405540+0000 mgr.smithi099.hzjdah (mgr.14182) 288 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:43.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: cluster 2024-01-27T23:34:41.406675+0000 mgr.smithi099.hzjdah (mgr.14182) 289 : cluster [DBG] pgmap v244: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 191 B/s wr, 2 op/s 2024-01-27T23:34:43.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:42 smithi099 bash[16328]: cluster 2024-01-27T23:34:41.611045+0000 mon.smithi099 (mon.0) 687 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:34:43.347 INFO:teuthology.orchestra.run.smithi099.stdout:Setting up python3-boto3 (1.4.2-1) ... 2024-01-27T23:34:44.014 DEBUG:teuthology.orchestra.run.smithi099:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2024-01-27T23:34:44.070 INFO:teuthology.orchestra.run.smithi099.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-01-27T23:34:44.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:44 smithi099 bash[16328]: audit 2024-01-27T23:34:43.074175+0000 mon.smithi099 (mon.0) 688 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:44.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:44 smithi099 bash[16328]: cluster 2024-01-27T23:34:43.408325+0000 mgr.smithi099.hzjdah (mgr.14182) 290 : cluster [DBG] pgmap v245: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 191 B/s wr, 2 op/s 2024-01-27T23:34:44.550 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:44 smithi142 bash[20347]: audit 2024-01-27T23:34:43.074175+0000 mon.smithi099 (mon.0) 688 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:44.550 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:44 smithi142 bash[20347]: cluster 2024-01-27T23:34:43.408325+0000 mgr.smithi099.hzjdah (mgr.14182) 290 : cluster [DBG] pgmap v245: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 191 B/s wr, 2 op/s 2024-01-27T23:34:46.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:46 smithi142 bash[20347]: cluster 2024-01-27T23:34:45.409645+0000 mgr.smithi099.hzjdah (mgr.14182) 291 : cluster [DBG] pgmap v246: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 173 B/s wr, 2 op/s 2024-01-27T23:34:46.829 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:46 smithi099 bash[16328]: cluster 2024-01-27T23:34:45.409645+0000 mgr.smithi099.hzjdah (mgr.14182) 291 : cluster [DBG] pgmap v246: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 173 B/s wr, 2 op/s 2024-01-27T23:34:48.313 INFO:teuthology.orchestra.run.smithi099.stderr:Inferring fsid 54223e96-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:34:48.341 INFO:teuthology.orchestra.run.smithi099.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:e3ad1a2b0241ab3f1cea37a2b2c536cd3eb3cb0a7576a757f1a81d5db9b1bc37 2024-01-27T23:34:48.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:48 smithi099 bash[16328]: audit 2024-01-27T23:34:47.316467+0000 mon.smithi099 (mon.0) 689 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:48.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:48 smithi099 bash[16328]: cluster 2024-01-27T23:34:47.410958+0000 mgr.smithi099.hzjdah (mgr.14182) 292 : cluster [DBG] pgmap v247: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 86 B/s wr, 1 op/s 2024-01-27T23:34:48.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:48 smithi099 bash[16328]: audit 2024-01-27T23:34:47.627641+0000 mon.smithi099 (mon.0) 690 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:48.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:48 smithi099 bash[16328]: audit 2024-01-27T23:34:47.629973+0000 mon.smithi099 (mon.0) 691 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:48.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:48 smithi099 bash[16328]: audit 2024-01-27T23:34:47.631474+0000 mon.smithi099 (mon.0) 692 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:34:48.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:48 smithi099 bash[16328]: cephadm 2024-01-27T23:34:47.639081+0000 mgr.smithi099.hzjdah (mgr.14182) 293 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-27T23:34:48.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:48 smithi099 bash[16328]: audit 2024-01-27T23:34:47.899801+0000 mon.smithi099 (mon.0) 693 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:48.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:48 smithi099 bash[16328]: audit 2024-01-27T23:34:47.908498+0000 mon.smithi099 (mon.0) 694 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:34:48.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:48 smithi099 bash[16328]: audit 2024-01-27T23:34:47.922138+0000 mon.smithi099 (mon.0) 695 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:48.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:48 smithi142 bash[20347]: audit 2024-01-27T23:34:47.316467+0000 mon.smithi099 (mon.0) 689 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:48.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:48 smithi142 bash[20347]: cluster 2024-01-27T23:34:47.410958+0000 mgr.smithi099.hzjdah (mgr.14182) 292 : cluster [DBG] pgmap v247: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 86 B/s wr, 1 op/s 2024-01-27T23:34:48.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:48 smithi142 bash[20347]: audit 2024-01-27T23:34:47.627641+0000 mon.smithi099 (mon.0) 690 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:48.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:48 smithi142 bash[20347]: audit 2024-01-27T23:34:47.629973+0000 mon.smithi099 (mon.0) 691 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:34:48.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:48 smithi142 bash[20347]: audit 2024-01-27T23:34:47.631474+0000 mon.smithi099 (mon.0) 692 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:34:48.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:48 smithi142 bash[20347]: cephadm 2024-01-27T23:34:47.639081+0000 mgr.smithi099.hzjdah (mgr.14182) 293 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-27T23:34:48.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:48 smithi142 bash[20347]: audit 2024-01-27T23:34:47.899801+0000 mon.smithi099 (mon.0) 693 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:48.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:48 smithi142 bash[20347]: audit 2024-01-27T23:34:47.908498+0000 mon.smithi099 (mon.0) 694 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:34:48.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:48 smithi142 bash[20347]: audit 2024-01-27T23:34:47.922138+0000 mon.smithi099 (mon.0) 695 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:49.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:49 smithi099 bash[16328]: cluster 2024-01-27T23:34:47.901147+0000 mgr.smithi099.hzjdah (mgr.14182) 294 : cluster [DBG] pgmap v248: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:34:49.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:49 smithi099 bash[16328]: cephadm 2024-01-27T23:34:47.927643+0000 mgr.smithi099.hzjdah (mgr.14182) 295 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.iugris on smithi142 2024-01-27T23:34:49.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:49 smithi099 bash[16328]: cluster 2024-01-27T23:34:48.314106+0000 mon.smithi099 (mon.0) 696 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:34:49.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:49 smithi099 bash[16328]: cluster 2024-01-27T23:34:48.314165+0000 mon.smithi099 (mon.0) 697 : cluster [INF] Cluster is now healthy 2024-01-27T23:34:49.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:49 smithi142 bash[20347]: cluster 2024-01-27T23:34:47.901147+0000 mgr.smithi099.hzjdah (mgr.14182) 294 : cluster [DBG] pgmap v248: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:34:49.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:49 smithi142 bash[20347]: cephadm 2024-01-27T23:34:47.927643+0000 mgr.smithi099.hzjdah (mgr.14182) 295 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.iugris on smithi142 2024-01-27T23:34:49.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:49 smithi142 bash[20347]: cluster 2024-01-27T23:34:48.314106+0000 mon.smithi099 (mon.0) 696 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:34:49.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:49 smithi142 bash[20347]: cluster 2024-01-27T23:34:48.314165+0000 mon.smithi099 (mon.0) 697 : cluster [INF] Cluster is now healthy 2024-01-27T23:34:51.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:51 smithi099 bash[16328]: cluster 2024-01-27T23:34:49.902203+0000 mgr.smithi099.hzjdah (mgr.14182) 296 : cluster [DBG] pgmap v249: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 793 B/s rd, 0 op/s 2024-01-27T23:34:51.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:51 smithi142 bash[20347]: cluster 2024-01-27T23:34:49.902203+0000 mgr.smithi099.hzjdah (mgr.14182) 296 : cluster [DBG] pgmap v249: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 793 B/s rd, 0 op/s 2024-01-27T23:34:52.580 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:52 smithi099 bash[16328]: audit 2024-01-27T23:34:51.973702+0000 mon.smithi099 (mon.0) 698 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.iugris"}]: dispatch 2024-01-27T23:34:52.800 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:52 smithi142 bash[20347]: audit 2024-01-27T23:34:51.973702+0000 mon.smithi099 (mon.0) 698 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.iugris"}]: dispatch 2024-01-27T23:34:52.839 INFO:teuthology.run_tasks:Running task python... 2024-01-27T23:34:52.849 INFO:tasks.python:Running python on role host.a host ubuntu@smithi099.front.sepia.ceph.com 2024-01-27T23:34:52.849 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2024-01-27T23:34:52.849 DEBUG:teuthology.orchestra.run.smithi099:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-01-27T23:34:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: cluster 2024-01-27T23:34:51.903475+0000 mgr.smithi099.hzjdah (mgr.14182) 297 : cluster [DBG] pgmap v250: 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-01-27T23:34:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: cephadm 2024-01-27T23:34:51.972541+0000 mgr.smithi099.hzjdah (mgr.14182) 298 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.iugris ... 2024-01-27T23:34:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.iugris ... 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: cephadm 2024-01-27T23:34:51.973040+0000 mgr.smithi099.hzjdah (mgr.14182) 299 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: cephadm 2024-01-27T23:34:51.975322+0000 mgr.smithi099.hzjdah (mgr.14182) 300 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:54.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.iugris ... 2024-01-27T23:34:54.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:54.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:54.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:54.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:53 smithi142 bash[20347]: cephadm 2024-01-27T23:34:51.980140+0000 mgr.smithi099.hzjdah (mgr.14182) 301 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.rzwure on smithi099 2024-01-27T23:34:54.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: cluster 2024-01-27T23:34:51.903475+0000 mgr.smithi099.hzjdah (mgr.14182) 297 : cluster [DBG] pgmap v250: 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-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: cephadm 2024-01-27T23:34:51.972541+0000 mgr.smithi099.hzjdah (mgr.14182) 298 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.iugris ... 2024-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.iugris ... 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: cephadm 2024-01-27T23:34:51.973040+0000 mgr.smithi099.hzjdah (mgr.14182) 299 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: cephadm 2024-01-27T23:34:51.975322+0000 mgr.smithi099.hzjdah (mgr.14182) 300 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris 2024-01-27T23:34:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.iugris ... 2024-01-27T23:34:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:53 smithi099 bash[16328]: cephadm 2024-01-27T23:34:51.980140+0000 mgr.smithi099.hzjdah (mgr.14182) 301 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.rzwure on smithi099 2024-01-27T23:34:55.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:54 smithi142 bash[20347]: cluster 2024-01-27T23:34:53.699529+0000 mon.smithi099 (mon.0) 699 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-01-27T23:34:55.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:54 smithi142 bash[20347]: audit 2024-01-27T23:34:53.700635+0000 mon.smithi099 (mon.0) 700 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-01-27T23:34:55.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:54 smithi099 bash[16328]: cluster 2024-01-27T23:34:53.699529+0000 mon.smithi099 (mon.0) 699 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-01-27T23:34:55.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:54 smithi099 bash[16328]: audit 2024-01-27T23:34:53.700635+0000 mon.smithi099 (mon.0) 700 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-01-27T23:34:56.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:55 smithi142 bash[20347]: cluster 2024-01-27T23:34:53.904181+0000 mgr.smithi099.hzjdah (mgr.14182) 302 : cluster [DBG] pgmap v252: 193 pgs: 32 unknown, 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 2 op/s 2024-01-27T23:34:56.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:55 smithi142 bash[20347]: audit 2024-01-27T23:34:54.712149+0000 mon.smithi099 (mon.0) 701 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-01-27T23:34:56.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:55 smithi142 bash[20347]: cluster 2024-01-27T23:34:54.712611+0000 mon.smithi099 (mon.0) 702 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-01-27T23:34:56.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:55 smithi142 bash[20347]: audit 2024-01-27T23:34:54.721051+0000 mon.smithi099 (mon.0) 703 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:34:56.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:55 smithi099 bash[16328]: cluster 2024-01-27T23:34:53.904181+0000 mgr.smithi099.hzjdah (mgr.14182) 302 : cluster [DBG] pgmap v252: 193 pgs: 32 unknown, 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 2 op/s 2024-01-27T23:34:56.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:55 smithi099 bash[16328]: audit 2024-01-27T23:34:54.712149+0000 mon.smithi099 (mon.0) 701 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-01-27T23:34:56.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:55 smithi099 bash[16328]: cluster 2024-01-27T23:34:54.712611+0000 mon.smithi099 (mon.0) 702 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-01-27T23:34:56.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:55 smithi099 bash[16328]: audit 2024-01-27T23:34:54.721051+0000 mon.smithi099 (mon.0) 703 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:34:57.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:56 smithi142 bash[20347]: audit 2024-01-27T23:34:55.713082+0000 mon.smithi099 (mon.0) 704 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:34:57.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:56 smithi142 bash[20347]: cluster 2024-01-27T23:34:55.713175+0000 mon.smithi099 (mon.0) 705 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-01-27T23:34:57.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:56 smithi142 bash[20347]: audit 2024-01-27T23:34:56.177922+0000 mon.smithi099 (mon.0) 706 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.rzwure"}]: dispatch 2024-01-27T23:34:57.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:56 smithi099 bash[16328]: audit 2024-01-27T23:34:55.713082+0000 mon.smithi099 (mon.0) 704 : audit [INF] from='client.? 172.21.15.99:0/135374919' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:34:57.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:56 smithi099 bash[16328]: cluster 2024-01-27T23:34:55.713175+0000 mon.smithi099 (mon.0) 705 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-01-27T23:34:57.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:56 smithi099 bash[16328]: audit 2024-01-27T23:34:56.177922+0000 mon.smithi099 (mon.0) 706 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.rzwure"}]: dispatch 2024-01-27T23:34:57.805 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-27T23:34:57.815 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi099.front.sepia.ceph.com 2024-01-27T23:34:57.815 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-01-27T23:34:58.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: cephadm 2024-01-27T23:34:55.902511+0000 mgr.smithi099.hzjdah (mgr.14182) 303 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:58.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:58.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.rzwure ... 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.rzwure ... 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: cephadm 2024-01-27T23:34:55.903077+0000 mgr.smithi099.hzjdah (mgr.14182) 304 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: cluster 2024-01-27T23:34:55.904937+0000 mgr.smithi099.hzjdah (mgr.14182) 305 : cluster [DBG] pgmap v255: 193 pgs: 6 creating+peering, 21 unknown, 166 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 341 B/s wr, 3 op/s 2024-01-27T23:34:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: cephadm 2024-01-27T23:34:56.179813+0000 mgr.smithi099.hzjdah (mgr.14182) 306 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.rzwure ... 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: cephadm 2024-01-27T23:34:56.184002+0000 mgr.smithi099.hzjdah (mgr.14182) 307 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: cephadm 2024-01-27T23:34:56.187875+0000 mgr.smithi099.hzjdah (mgr.14182) 308 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: cluster 2024-01-27T23:34:56.188821+0000 mgr.smithi099.hzjdah (mgr.14182) 309 : cluster [DBG] pgmap v256: 193 pgs: 6 creating+peering, 21 unknown, 166 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 477 B/s wr, 2 op/s 2024-01-27T23:34:58.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: cluster 2024-01-27T23:34:56.718426+0000 mon.smithi099 (mon.0) 707 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:34:58.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: cluster 2024-01-27T23:34:56.737992+0000 mon.smithi099 (mon.0) 708 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-01-27T23:34:58.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:57 smithi142 bash[20347]: audit 2024-01-27T23:34:56.749260+0000 mon.smithi099 (mon.0) 709 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-01-27T23:34:58.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: cephadm 2024-01-27T23:34:55.902511+0000 mgr.smithi099.hzjdah (mgr.14182) 303 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:58.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:58.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.rzwure ... 2024-01-27T23:34:58.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:58.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:58.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:58.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:34:58.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:34:58.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:34:58.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:34:58.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:34:58.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:58.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:58.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.rzwure ... 2024-01-27T23:34:58.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:58.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:58.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:58.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: cephadm 2024-01-27T23:34:55.903077+0000 mgr.smithi099.hzjdah (mgr.14182) 304 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: cluster 2024-01-27T23:34:55.904937+0000 mgr.smithi099.hzjdah (mgr.14182) 305 : cluster [DBG] pgmap v255: 193 pgs: 6 creating+peering, 21 unknown, 166 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 341 B/s wr, 3 op/s 2024-01-27T23:34:58.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: cephadm 2024-01-27T23:34:56.179813+0000 mgr.smithi099.hzjdah (mgr.14182) 306 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:58.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure 2024-01-27T23:34:58.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:34:58.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure 2024-01-27T23:34:58.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.rzwure ... 2024-01-27T23:34:58.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:34:58.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:34:58.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:34:58.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:34:58.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: cephadm 2024-01-27T23:34:56.184002+0000 mgr.smithi099.hzjdah (mgr.14182) 307 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:58.088 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: cephadm 2024-01-27T23:34:56.187875+0000 mgr.smithi099.hzjdah (mgr.14182) 308 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:34:58.088 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: cluster 2024-01-27T23:34:56.188821+0000 mgr.smithi099.hzjdah (mgr.14182) 309 : cluster [DBG] pgmap v256: 193 pgs: 6 creating+peering, 21 unknown, 166 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 477 B/s wr, 2 op/s 2024-01-27T23:34:58.088 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: cluster 2024-01-27T23:34:56.718426+0000 mon.smithi099 (mon.0) 707 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:34:58.088 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: cluster 2024-01-27T23:34:56.737992+0000 mon.smithi099 (mon.0) 708 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-01-27T23:34:58.088 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:57 smithi099 bash[16328]: audit 2024-01-27T23:34:56.749260+0000 mon.smithi099 (mon.0) 709 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-01-27T23:34:59.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:58 smithi142 bash[20347]: audit 2024-01-27T23:34:57.748398+0000 mon.smithi099 (mon.0) 710 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-01-27T23:34:59.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:58 smithi142 bash[20347]: cluster 2024-01-27T23:34:57.748510+0000 mon.smithi099 (mon.0) 711 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-01-27T23:34:59.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:58 smithi142 bash[20347]: audit 2024-01-27T23:34:58.095830+0000 mon.smithi099 (mon.0) 712 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:34:59.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:58 smithi099 bash[16328]: audit 2024-01-27T23:34:57.748398+0000 mon.smithi099 (mon.0) 710 : audit [INF] from='client.? 172.21.15.99:0/385419585' entity='client.rgw.foorgw.smithi099.zjroih' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-01-27T23:34:59.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:58 smithi099 bash[16328]: cluster 2024-01-27T23:34:57.748510+0000 mon.smithi099 (mon.0) 711 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-01-27T23:34:59.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:58 smithi099 bash[16328]: audit 2024-01-27T23:34:58.095830+0000 mon.smithi099 (mon.0) 712 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:35:00.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:59 smithi142 bash[20347]: cluster 2024-01-27T23:34:58.189841+0000 mgr.smithi099.hzjdah (mgr.14182) 310 : cluster [DBG] pgmap v259: 225 pgs: 18 creating+peering, 23 unknown, 184 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.9 KiB/s rd, 1.1 KiB/s wr, 8 op/s 2024-01-27T23:35:00.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:34:59 smithi142 bash[20347]: cluster 2024-01-27T23:34:58.763029+0000 mon.smithi099 (mon.0) 713 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-01-27T23:35:00.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:59 smithi099 bash[16328]: cluster 2024-01-27T23:34:58.189841+0000 mgr.smithi099.hzjdah (mgr.14182) 310 : cluster [DBG] pgmap v259: 225 pgs: 18 creating+peering, 23 unknown, 184 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.9 KiB/s rd, 1.1 KiB/s wr, 8 op/s 2024-01-27T23:35:00.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:34:59 smithi099 bash[16328]: cluster 2024-01-27T23:34:58.763029+0000 mon.smithi099 (mon.0) 713 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-01-27T23:35:01.360 INFO:teuthology.orchestra.run.smithi099.stdout:{ 2024-01-27T23:35:01.360 INFO:teuthology.orchestra.run.smithi099.stdout: "bind": "/foouser", 2024-01-27T23:35:01.360 INFO:teuthology.orchestra.run.smithi099.stdout: "path": "/", 2024-01-27T23:35:01.360 INFO:teuthology.orchestra.run.smithi099.stdout: "cluster": "foo", 2024-01-27T23:35:01.360 INFO:teuthology.orchestra.run.smithi099.stdout: "mode": "RW", 2024-01-27T23:35:01.361 INFO:teuthology.orchestra.run.smithi099.stdout: "squash": "none" 2024-01-27T23:35:01.361 INFO:teuthology.orchestra.run.smithi099.stdout:} 2024-01-27T23:35:02.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:01 smithi142 bash[20347]: cluster 2024-01-27T23:35:00.191197+0000 mgr.smithi099.hzjdah (mgr.14182) 311 : cluster [DBG] pgmap v261: 225 pgs: 12 creating+peering, 12 unknown, 201 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.9 KiB/s rd, 955 B/s wr, 6 op/s 2024-01-27T23:35:02.071 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:01 smithi099 bash[16328]: cluster 2024-01-27T23:35:00.191197+0000 mgr.smithi099.hzjdah (mgr.14182) 311 : cluster [DBG] pgmap v261: 225 pgs: 12 creating+peering, 12 unknown, 201 active+clean; 6.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.9 KiB/s rd, 955 B/s wr, 6 op/s 2024-01-27T23:35:02.072 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-01-27T23:35:02.083 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-01-27T23:35:02.084 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:03.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:02 smithi142 bash[20347]: audit 2024-01-27T23:35:01.162962+0000 mgr.smithi099.hzjdah (mgr.14182) 312 : audit [DBG] from='client.14608 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:35:03.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:02 smithi099 bash[16328]: audit 2024-01-27T23:35:01.162962+0000 mgr.smithi099.hzjdah (mgr.14182) 312 : audit [DBG] from='client.14608 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:35:04.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:03 smithi142 bash[20347]: cluster 2024-01-27T23:35:02.193276+0000 mgr.smithi099.hzjdah (mgr.14182) 313 : cluster [DBG] pgmap v262: 225 pgs: 12 creating+peering, 213 active+clean; 7.0 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.3 KiB/s rd, 852 B/s wr, 8 op/s 2024-01-27T23:35:04.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:03 smithi099 bash[16328]: cluster 2024-01-27T23:35:02.193276+0000 mgr.smithi099.hzjdah (mgr.14182) 313 : cluster [DBG] pgmap v262: 225 pgs: 12 creating+peering, 213 active+clean; 7.0 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.3 KiB/s rd, 852 B/s wr, 8 op/s 2024-01-27T23:35:05.453 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:05.453 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:06.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:05 smithi142 bash[20347]: cluster 2024-01-27T23:35:04.195120+0000 mgr.smithi099.hzjdah (mgr.14182) 314 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.6 KiB/s rd, 960 B/s wr, 11 op/s 2024-01-27T23:35:06.061 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:05 smithi099 bash[16328]: cluster 2024-01-27T23:35:04.195120+0000 mgr.smithi099.hzjdah (mgr.14182) 314 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.6 KiB/s rd, 960 B/s wr, 11 op/s 2024-01-27T23:35:06.062 INFO:tasks.cephadm:nfs.foo has 1/1 2024-01-27T23:35:06.063 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-01-27T23:35:06.074 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-01-27T23:35:06.074 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:07.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:06 smithi142 bash[20347]: audit 2024-01-27T23:35:05.444750+0000 mgr.smithi099.hzjdah (mgr.14182) 315 : audit [DBG] from='client.14632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:07.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:06 smithi099 bash[16328]: audit 2024-01-27T23:35:05.444750+0000 mgr.smithi099.hzjdah (mgr.14182) 315 : audit [DBG] from='client.14632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:08.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:07 smithi142 bash[20347]: cluster 2024-01-27T23:35:06.196594+0000 mgr.smithi099.hzjdah (mgr.14182) 316 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.7 KiB/s rd, 848 B/s wr, 15 op/s 2024-01-27T23:35:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:07 smithi099 bash[16328]: cluster 2024-01-27T23:35:06.196594+0000 mgr.smithi099.hzjdah (mgr.14182) 316 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.7 KiB/s rd, 848 B/s wr, 15 op/s 2024-01-27T23:35:09.294 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:09.294 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:09.902 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:10.050 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:09 smithi142 bash[20347]: cluster 2024-01-27T23:35:08.198511+0000 mgr.smithi099.hzjdah (mgr.14182) 317 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.4 KiB/s rd, 716 B/s wr, 15 op/s 2024-01-27T23:35:10.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:09 smithi099 bash[16328]: cluster 2024-01-27T23:35:08.198511+0000 mgr.smithi099.hzjdah (mgr.14182) 317 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.4 KiB/s rd, 716 B/s wr, 15 op/s 2024-01-27T23:35:10.903 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:11.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:10 smithi099 bash[16328]: audit 2024-01-27T23:35:09.287807+0000 mgr.smithi099.hzjdah (mgr.14182) 318 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:11.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:10 smithi099 bash[16328]: audit 2024-01-27T23:35:10.373988+0000 mon.smithi099 (mon.0) 714 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:35:11.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:10 smithi142 bash[20347]: audit 2024-01-27T23:35:09.287807+0000 mgr.smithi099.hzjdah (mgr.14182) 318 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:11.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:10 smithi142 bash[20347]: audit 2024-01-27T23:35:10.373988+0000 mon.smithi099 (mon.0) 714 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:35:12.077 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:11 smithi099 bash[16328]: cluster 2024-01-27T23:35:10.199957+0000 mgr.smithi099.hzjdah (mgr.14182) 319 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.1 KiB/s rd, 537 B/s wr, 13 op/s 2024-01-27T23:35:12.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:11 smithi142 bash[20347]: cluster 2024-01-27T23:35:10.199957+0000 mgr.smithi099.hzjdah (mgr.14182) 319 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.1 KiB/s rd, 537 B/s wr, 13 op/s 2024-01-27T23:35:14.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:13 smithi099 bash[16328]: cluster 2024-01-27T23:35:12.201426+0000 mgr.smithi099.hzjdah (mgr.14182) 320 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 12 op/s 2024-01-27T23:35:14.150 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:14.150 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:14.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:13 smithi142 bash[20347]: cluster 2024-01-27T23:35:12.201426+0000 mgr.smithi099.hzjdah (mgr.14182) 320 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 12 op/s 2024-01-27T23:35:14.801 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:15.802 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:15 smithi099 bash[16328]: audit 2024-01-27T23:35:14.148487+0000 mgr.smithi099.hzjdah (mgr.14182) 321 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:16.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:15 smithi099 bash[16328]: cluster 2024-01-27T23:35:14.203060+0000 mgr.smithi099.hzjdah (mgr.14182) 322 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.2 KiB/s rd, 426 B/s wr, 10 op/s 2024-01-27T23:35:16.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:15 smithi142 bash[20347]: audit 2024-01-27T23:35:14.148487+0000 mgr.smithi099.hzjdah (mgr.14182) 321 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:16.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:15 smithi142 bash[20347]: cluster 2024-01-27T23:35:14.203060+0000 mgr.smithi099.hzjdah (mgr.14182) 322 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.2 KiB/s rd, 426 B/s wr, 10 op/s 2024-01-27T23:35:18.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:17 smithi099 bash[16328]: cluster 2024-01-27T23:35:16.204566+0000 mgr.smithi099.hzjdah (mgr.14182) 323 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.4 KiB/s rd, 85 B/s wr, 6 op/s 2024-01-27T23:35:18.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:17 smithi142 bash[20347]: cluster 2024-01-27T23:35:16.204566+0000 mgr.smithi099.hzjdah (mgr.14182) 323 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.4 KiB/s rd, 85 B/s wr, 6 op/s 2024-01-27T23:35:19.145 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:19.145 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:19.772 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:20.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:19 smithi099 bash[16328]: cluster 2024-01-27T23:35:18.206514+0000 mgr.smithi099.hzjdah (mgr.14182) 324 : cluster [DBG] pgmap v270: 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-01-27T23:35:20.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:19 smithi142 bash[20347]: cluster 2024-01-27T23:35:18.206514+0000 mgr.smithi099.hzjdah (mgr.14182) 324 : cluster [DBG] pgmap v270: 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-01-27T23:35:20.772 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:21.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:20 smithi099 bash[16328]: audit 2024-01-27T23:35:19.136402+0000 mgr.smithi099.hzjdah (mgr.14182) 325 : audit [DBG] from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:21.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:20 smithi142 bash[20347]: audit 2024-01-27T23:35:19.136402+0000 mgr.smithi099.hzjdah (mgr.14182) 325 : audit [DBG] from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:22.151 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:21 smithi099 bash[16328]: cluster 2024-01-27T23:35:20.207971+0000 mgr.smithi099.hzjdah (mgr.14182) 326 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:22.300 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:21 smithi142 bash[20347]: cluster 2024-01-27T23:35:20.207971+0000 mgr.smithi099.hzjdah (mgr.14182) 326 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:24.066 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:24.066 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:24.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:23 smithi099 bash[16328]: cluster 2024-01-27T23:35:22.210383+0000 mgr.smithi099.hzjdah (mgr.14182) 327 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:24.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:23 smithi142 bash[20347]: cluster 2024-01-27T23:35:22.210383+0000 mgr.smithi099.hzjdah (mgr.14182) 327 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:24.714 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:25.715 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:26.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:25 smithi099 bash[16328]: audit 2024-01-27T23:35:24.057394+0000 mgr.smithi099.hzjdah (mgr.14182) 328 : audit [DBG] from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:26.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:25 smithi099 bash[16328]: cluster 2024-01-27T23:35:24.212039+0000 mgr.smithi099.hzjdah (mgr.14182) 329 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:26.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:25 smithi142 bash[20347]: audit 2024-01-27T23:35:24.057394+0000 mgr.smithi099.hzjdah (mgr.14182) 328 : audit [DBG] from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:26.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:25 smithi142 bash[20347]: cluster 2024-01-27T23:35:24.212039+0000 mgr.smithi099.hzjdah (mgr.14182) 329 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:28.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:27 smithi142 bash[20347]: cluster 2024-01-27T23:35:26.213559+0000 mgr.smithi099.hzjdah (mgr.14182) 330 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:28.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:27 smithi099 bash[16328]: cluster 2024-01-27T23:35:26.213559+0000 mgr.smithi099.hzjdah (mgr.14182) 330 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:28.932 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:28.932 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:29.540 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:30.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:29 smithi142 bash[20347]: cluster 2024-01-27T23:35:28.215461+0000 mgr.smithi099.hzjdah (mgr.14182) 331 : cluster [DBG] pgmap v275: 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-01-27T23:35:30.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:29 smithi099 bash[16328]: cluster 2024-01-27T23:35:28.215461+0000 mgr.smithi099.hzjdah (mgr.14182) 331 : cluster [DBG] pgmap v275: 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-01-27T23:35:30.541 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:31.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:30 smithi142 bash[20347]: audit 2024-01-27T23:35:28.923094+0000 mgr.smithi099.hzjdah (mgr.14182) 332 : audit [DBG] from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:31.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:30 smithi099 bash[16328]: audit 2024-01-27T23:35:28.923094+0000 mgr.smithi099.hzjdah (mgr.14182) 332 : audit [DBG] from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:32.007 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:31 smithi099 bash[16328]: cluster 2024-01-27T23:35:30.216921+0000 mgr.smithi099.hzjdah (mgr.14182) 333 : cluster [DBG] pgmap v276: 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-01-27T23:35:32.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:31 smithi142 bash[20347]: cluster 2024-01-27T23:35:30.216921+0000 mgr.smithi099.hzjdah (mgr.14182) 333 : cluster [DBG] pgmap v276: 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-01-27T23:35:33.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:32 smithi142 bash[20347]: cluster 2024-01-27T23:35:32.218667+0000 mgr.smithi099.hzjdah (mgr.14182) 334 : cluster [DBG] pgmap v277: 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-01-27T23:35:33.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:32 smithi099 bash[16328]: cluster 2024-01-27T23:35:32.218667+0000 mgr.smithi099.hzjdah (mgr.14182) 334 : cluster [DBG] pgmap v277: 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-01-27T23:35:33.895 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:33.895 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:34.534 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:35.536 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:35.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:35 smithi099 bash[16328]: audit 2024-01-27T23:35:33.886292+0000 mgr.smithi099.hzjdah (mgr.14182) 335 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:35.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:35 smithi099 bash[16328]: cluster 2024-01-27T23:35:34.220257+0000 mgr.smithi099.hzjdah (mgr.14182) 336 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:35:36.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:35 smithi142 bash[20347]: audit 2024-01-27T23:35:33.886292+0000 mgr.smithi099.hzjdah (mgr.14182) 335 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:36.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:35 smithi142 bash[20347]: cluster 2024-01-27T23:35:34.220257+0000 mgr.smithi099.hzjdah (mgr.14182) 336 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:35:38.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:37 smithi142 bash[20347]: cluster 2024-01-27T23:35:36.221770+0000 mgr.smithi099.hzjdah (mgr.14182) 337 : cluster [DBG] pgmap v279: 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-01-27T23:35:38.065 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:37 smithi099 bash[16328]: cluster 2024-01-27T23:35:36.221770+0000 mgr.smithi099.hzjdah (mgr.14182) 337 : cluster [DBG] pgmap v279: 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-01-27T23:35:38.499 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:38.499 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:39.123 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:40.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:39 smithi142 bash[20347]: cluster 2024-01-27T23:35:38.223535+0000 mgr.smithi099.hzjdah (mgr.14182) 338 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:35:40.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:39 smithi142 bash[20347]: audit 2024-01-27T23:35:38.491070+0000 mgr.smithi099.hzjdah (mgr.14182) 339 : audit [DBG] from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:40.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:39 smithi099 bash[16328]: cluster 2024-01-27T23:35:38.223535+0000 mgr.smithi099.hzjdah (mgr.14182) 338 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:35:40.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:39 smithi099 bash[16328]: audit 2024-01-27T23:35:38.491070+0000 mgr.smithi099.hzjdah (mgr.14182) 339 : audit [DBG] from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:40.124 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:41.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:41 smithi099 bash[16328]: cluster 2024-01-27T23:35:40.224947+0000 mgr.smithi099.hzjdah (mgr.14182) 340 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:42.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:41 smithi142 bash[20347]: cluster 2024-01-27T23:35:40.224947+0000 mgr.smithi099.hzjdah (mgr.14182) 340 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:43.273 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:43.273 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:43.920 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:44.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:43 smithi142 bash[20347]: cluster 2024-01-27T23:35:42.226724+0000 mgr.smithi099.hzjdah (mgr.14182) 341 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:44.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:43 smithi099 bash[16328]: cluster 2024-01-27T23:35:42.226724+0000 mgr.smithi099.hzjdah (mgr.14182) 341 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:44.921 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:45.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:44 smithi142 bash[20347]: audit 2024-01-27T23:35:43.264421+0000 mgr.smithi099.hzjdah (mgr.14182) 342 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:45.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:44 smithi099 bash[16328]: audit 2024-01-27T23:35:43.264421+0000 mgr.smithi099.hzjdah (mgr.14182) 342 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:45.972 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:45 smithi099 bash[16328]: cluster 2024-01-27T23:35:44.228474+0000 mgr.smithi099.hzjdah (mgr.14182) 343 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:46.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:45 smithi142 bash[20347]: cluster 2024-01-27T23:35:44.228474+0000 mgr.smithi099.hzjdah (mgr.14182) 343 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:47.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:47 smithi099 bash[16328]: cluster 2024-01-27T23:35:46.230054+0000 mgr.smithi099.hzjdah (mgr.14182) 344 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:47.991 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:47.991 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:48.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:47 smithi142 bash[20347]: cluster 2024-01-27T23:35:46.230054+0000 mgr.smithi099.hzjdah (mgr.14182) 344 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:48.629 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:49.629 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:50.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:49 smithi142 bash[20347]: audit 2024-01-27T23:35:47.986530+0000 mgr.smithi099.hzjdah (mgr.14182) 345 : audit [DBG] from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:50.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:49 smithi142 bash[20347]: cluster 2024-01-27T23:35:48.232075+0000 mgr.smithi099.hzjdah (mgr.14182) 346 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:50.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:49 smithi099 bash[16328]: audit 2024-01-27T23:35:47.986530+0000 mgr.smithi099.hzjdah (mgr.14182) 345 : audit [DBG] from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:50.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:49 smithi099 bash[16328]: cluster 2024-01-27T23:35:48.232075+0000 mgr.smithi099.hzjdah (mgr.14182) 346 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:52.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:51 smithi142 bash[20347]: cluster 2024-01-27T23:35:50.233620+0000 mgr.smithi099.hzjdah (mgr.14182) 347 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:52.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:51 smithi099 bash[16328]: cluster 2024-01-27T23:35:50.233620+0000 mgr.smithi099.hzjdah (mgr.14182) 347 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:52.813 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:52.814 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:53.397 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:53 smithi142 bash[20347]: cluster 2024-01-27T23:35:52.235407+0000 mgr.smithi099.hzjdah (mgr.14182) 348 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:54.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:53 smithi142 bash[20347]: audit 2024-01-27T23:35:52.803861+0000 mgr.smithi099.hzjdah (mgr.14182) 349 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:54.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:53 smithi099 bash[16328]: cluster 2024-01-27T23:35:52.235407+0000 mgr.smithi099.hzjdah (mgr.14182) 348 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:54.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:53 smithi099 bash[16328]: audit 2024-01-27T23:35:52.803861+0000 mgr.smithi099.hzjdah (mgr.14182) 349 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:54.398 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:55.810 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:55 smithi099 bash[16328]: cluster 2024-01-27T23:35:54.237031+0000 mgr.smithi099.hzjdah (mgr.14182) 350 : cluster [DBG] pgmap v288: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:55.810 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:55 smithi099 bash[16328]: audit 2024-01-27T23:35:55.181482+0000 mon.smithi099 (mon.0) 715 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1b", "id": [4, 6]}]: dispatch 2024-01-27T23:35:55.810 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:55 smithi099 bash[16328]: audit 2024-01-27T23:35:55.182198+0000 mon.smithi099 (mon.0) 716 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.18", "id": [5, 3]}]: dispatch 2024-01-27T23:35:56.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:55 smithi142 bash[20347]: cluster 2024-01-27T23:35:54.237031+0000 mgr.smithi099.hzjdah (mgr.14182) 350 : cluster [DBG] pgmap v288: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:56.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:55 smithi142 bash[20347]: audit 2024-01-27T23:35:55.181482+0000 mon.smithi099 (mon.0) 715 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1b", "id": [4, 6]}]: dispatch 2024-01-27T23:35:56.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:55 smithi142 bash[20347]: audit 2024-01-27T23:35:55.182198+0000 mon.smithi099 (mon.0) 716 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.18", "id": [5, 3]}]: dispatch 2024-01-27T23:35:57.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:56 smithi142 bash[20347]: audit 2024-01-27T23:35:55.740907+0000 mon.smithi099 (mon.0) 717 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1b", "id": [4, 6]}]': finished 2024-01-27T23:35:57.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:56 smithi142 bash[20347]: audit 2024-01-27T23:35:55.741040+0000 mon.smithi099 (mon.0) 718 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.18", "id": [5, 3]}]': finished 2024-01-27T23:35:57.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:56 smithi142 bash[20347]: cluster 2024-01-27T23:35:55.741106+0000 mon.smithi099 (mon.0) 719 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-01-27T23:35:57.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:56 smithi142 bash[20347]: audit 2024-01-27T23:35:56.191787+0000 mon.smithi099 (mon.0) 720 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:35:57.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:56 smithi099 bash[16328]: audit 2024-01-27T23:35:55.740907+0000 mon.smithi099 (mon.0) 717 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1b", "id": [4, 6]}]': finished 2024-01-27T23:35:57.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:56 smithi099 bash[16328]: audit 2024-01-27T23:35:55.741040+0000 mon.smithi099 (mon.0) 718 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.18", "id": [5, 3]}]': finished 2024-01-27T23:35:57.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:56 smithi099 bash[16328]: cluster 2024-01-27T23:35:55.741106+0000 mon.smithi099 (mon.0) 719 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-01-27T23:35:57.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:56 smithi099 bash[16328]: audit 2024-01-27T23:35:56.191787+0000 mon.smithi099 (mon.0) 720 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:35:57.568 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:35:57.568 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:34:47.613758Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:34:47.306623Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:34:47.614170Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:34:47.306992Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:34:47.307153Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:34:47.615591Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:34:47.307302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:34:47.307595Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:34:47.307448Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:34:47.308183Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:58.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:57 smithi142 bash[20347]: cluster 2024-01-27T23:35:56.237831+0000 mgr.smithi099.hzjdah (mgr.14182) 351 : cluster [DBG] pgmap v290: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-27T23:35:58.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:57 smithi142 bash[20347]: cluster 2024-01-27T23:35:56.751338+0000 mon.smithi099 (mon.0) 721 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-01-27T23:35:58.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:57 smithi099 bash[16328]: cluster 2024-01-27T23:35:56.237831+0000 mgr.smithi099.hzjdah (mgr.14182) 351 : cluster [DBG] pgmap v290: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-01-27T23:35:58.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:57 smithi099 bash[16328]: cluster 2024-01-27T23:35:56.751338+0000 mon.smithi099 (mon.0) 721 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-01-27T23:35:58.203 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:59.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:58 smithi142 bash[20347]: audit 2024-01-27T23:35:57.562769+0000 mgr.smithi099.hzjdah (mgr.14182) 352 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:59.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:58 smithi099 bash[16328]: audit 2024-01-27T23:35:57.562769+0000 mgr.smithi099.hzjdah (mgr.14182) 352 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:59.204 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:00.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:35:59 smithi142 bash[20347]: cluster 2024-01-27T23:35:58.239382+0000 mgr.smithi099.hzjdah (mgr.14182) 353 : cluster [DBG] pgmap v292: 225 pgs: 1 peering, 224 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-27T23:36:00.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:35:59 smithi099 bash[16328]: cluster 2024-01-27T23:35:58.239382+0000 mgr.smithi099.hzjdah (mgr.14182) 353 : cluster [DBG] pgmap v292: 225 pgs: 1 peering, 224 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-27T23:36:01.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:00 smithi099 bash[16328]: cluster 2024-01-27T23:36:00.760508+0000 mon.smithi099 (mon.0) 722 : cluster [WRN] Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-01-27T23:36:01.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:00 smithi142 bash[20347]: cluster 2024-01-27T23:36:00.760508+0000 mon.smithi099 (mon.0) 722 : cluster [WRN] Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-01-27T23:36:02.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:01 smithi099 bash[16328]: cluster 2024-01-27T23:36:00.241049+0000 mgr.smithi099.hzjdah (mgr.14182) 354 : cluster [DBG] pgmap v293: 225 pgs: 1 peering, 224 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-27T23:36:02.301 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:01 smithi142 bash[20347]: cluster 2024-01-27T23:36:00.241049+0000 mgr.smithi099.hzjdah (mgr.14182) 354 : cluster [DBG] pgmap v293: 225 pgs: 1 peering, 224 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-27T23:36:02.651 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:02.651 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:41.405358Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zhixcz on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: audit 2024-01-27T23:36:02.078975+0000 mon.smithi099 (mon.0) 723 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: cluster 2024-01-27T23:36:02.242982+0000 mgr.smithi099.hzjdah (mgr.14182) 355 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: audit 2024-01-27T23:36:02.483154+0000 mon.smithi099 (mon.0) 724 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: audit 2024-01-27T23:36:02.642248+0000 mgr.smithi099.hzjdah (mgr.14182) 356 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: audit 2024-01-27T23:36:02.779997+0000 mon.smithi099 (mon.0) 725 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: audit 2024-01-27T23:36:02.781400+0000 mon.smithi099 (mon.0) 726 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: audit 2024-01-27T23:36:02.790215+0000 mon.smithi099 (mon.0) 727 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: cluster 2024-01-27T23:36:02.791043+0000 mgr.smithi099.hzjdah (mgr.14182) 357 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: audit 2024-01-27T23:36:02.797227+0000 mon.smithi099 (mon.0) 728 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: audit 2024-01-27T23:36:02.809810+0000 mon.smithi099 (mon.0) 729 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:03.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:03 smithi099 bash[16328]: cephadm 2024-01-27T23:36:02.815568+0000 mgr.smithi099.hzjdah (mgr.14182) 358 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.oojanv on smithi142 2024-01-27T23:36:03.350 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:03.551 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: audit 2024-01-27T23:36:02.078975+0000 mon.smithi099 (mon.0) 723 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:03.551 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: cluster 2024-01-27T23:36:02.242982+0000 mgr.smithi099.hzjdah (mgr.14182) 355 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-27T23:36:03.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: audit 2024-01-27T23:36:02.483154+0000 mon.smithi099 (mon.0) 724 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:03.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: audit 2024-01-27T23:36:02.642248+0000 mgr.smithi099.hzjdah (mgr.14182) 356 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:03.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: audit 2024-01-27T23:36:02.779997+0000 mon.smithi099 (mon.0) 725 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:36:03.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: audit 2024-01-27T23:36:02.781400+0000 mon.smithi099 (mon.0) 726 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:36:03.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: audit 2024-01-27T23:36:02.790215+0000 mon.smithi099 (mon.0) 727 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:03.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: cluster 2024-01-27T23:36:02.791043+0000 mgr.smithi099.hzjdah (mgr.14182) 357 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:36:03.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: audit 2024-01-27T23:36:02.797227+0000 mon.smithi099 (mon.0) 728 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:36:03.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: audit 2024-01-27T23:36:02.809810+0000 mon.smithi099 (mon.0) 729 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:03.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:03 smithi142 bash[20347]: cephadm 2024-01-27T23:36:02.815568+0000 mgr.smithi099.hzjdah (mgr.14182) 358 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.oojanv on smithi142 2024-01-27T23:36:04.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:04 smithi099 bash[16328]: cluster 2024-01-27T23:36:03.077644+0000 mon.smithi099 (mon.0) 730 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:36:04.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:04 smithi099 bash[16328]: cluster 2024-01-27T23:36:03.077703+0000 mon.smithi099 (mon.0) 731 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-01-27T23:36:04.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:04 smithi099 bash[16328]: cluster 2024-01-27T23:36:03.077728+0000 mon.smithi099 (mon.0) 732 : cluster [INF] Cluster is now healthy 2024-01-27T23:36:04.351 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:04.551 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:04 smithi142 bash[20347]: cluster 2024-01-27T23:36:03.077644+0000 mon.smithi099 (mon.0) 730 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:36:04.551 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:04 smithi142 bash[20347]: cluster 2024-01-27T23:36:03.077703+0000 mon.smithi099 (mon.0) 731 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-01-27T23:36:04.551 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:04 smithi142 bash[20347]: cluster 2024-01-27T23:36:03.077728+0000 mon.smithi099 (mon.0) 732 : cluster [INF] Cluster is now healthy 2024-01-27T23:36:05.491 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:05 smithi099 bash[16328]: cluster 2024-01-27T23:36:04.792005+0000 mgr.smithi099.hzjdah (mgr.14182) 359 : cluster [DBG] pgmap v296: 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-01-27T23:36:05.551 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:05 smithi142 bash[20347]: cluster 2024-01-27T23:36:04.792005+0000 mgr.smithi099.hzjdah (mgr.14182) 359 : cluster [DBG] pgmap v296: 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-01-27T23:36:07.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:06 smithi142 bash[20347]: audit 2024-01-27T23:36:06.726749+0000 mon.smithi099 (mon.0) 733 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.oojanv"}]: dispatch 2024-01-27T23:36:07.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:06 smithi099 bash[16328]: audit 2024-01-27T23:36:06.726749+0000 mon.smithi099 (mon.0) 733 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.oojanv"}]: dispatch 2024-01-27T23:36:07.630 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:07.631 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:51.975021Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.iugris on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-iugris\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.iugris\nDeploy daemon haproxy.nfs.foo.smithi142.iugris ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.179583Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.rzwure on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-rzwure\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.rzwure\nDeploy daemon haproxy.nfs.foo.smithi099.rzwure ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:34:56.183804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ixofun on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:08.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: cephadm 2024-01-27T23:36:06.725166+0000 mgr.smithi099.hzjdah (mgr.14182) 360 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:08.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:08.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.oojanv ... 2024-01-27T23:36:08.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.oojanv ... 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: cephadm 2024-01-27T23:36:06.725879+0000 mgr.smithi099.hzjdah (mgr.14182) 361 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: cephadm 2024-01-27T23:36:06.728790+0000 mgr.smithi099.hzjdah (mgr.14182) 362 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.oojanv ... 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:08.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:08.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:08.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: cephadm 2024-01-27T23:36:06.734180+0000 mgr.smithi099.hzjdah (mgr.14182) 363 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.oybhgp on smithi099 2024-01-27T23:36:08.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:07 smithi142 bash[20347]: cluster 2024-01-27T23:36:06.793508+0000 mgr.smithi099.hzjdah (mgr.14182) 364 : cluster [DBG] pgmap v297: 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-01-27T23:36:08.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: cephadm 2024-01-27T23:36:06.725166+0000 mgr.smithi099.hzjdah (mgr.14182) 360 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:08.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.oojanv ... 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.oojanv ... 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: cephadm 2024-01-27T23:36:06.725879+0000 mgr.smithi099.hzjdah (mgr.14182) 361 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: cephadm 2024-01-27T23:36:06.728790+0000 mgr.smithi099.hzjdah (mgr.14182) 362 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:08.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.oojanv ... 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: cephadm 2024-01-27T23:36:06.734180+0000 mgr.smithi099.hzjdah (mgr.14182) 363 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.oybhgp on smithi099 2024-01-27T23:36:08.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:07 smithi099 bash[16328]: cluster 2024-01-27T23:36:06.793508+0000 mgr.smithi099.hzjdah (mgr.14182) 364 : cluster [DBG] pgmap v297: 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-01-27T23:36:08.334 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:09.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:08 smithi142 bash[20347]: audit 2024-01-27T23:36:07.628948+0000 mgr.smithi099.hzjdah (mgr.14182) 365 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:09.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:08 smithi099 bash[16328]: audit 2024-01-27T23:36:07.628948+0000 mgr.smithi099.hzjdah (mgr.14182) 365 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:09.335 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:10.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:09 smithi142 bash[20347]: cluster 2024-01-27T23:36:08.794851+0000 mgr.smithi099.hzjdah (mgr.14182) 366 : cluster [DBG] pgmap v298: 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-01-27T23:36:10.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:09 smithi099 bash[16328]: cluster 2024-01-27T23:36:08.794851+0000 mgr.smithi099.hzjdah (mgr.14182) 366 : cluster [DBG] pgmap v298: 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-01-27T23:36:11.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: audit 2024-01-27T23:36:10.374980+0000 mon.smithi099 (mon.0) 734 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:11.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: cephadm 2024-01-27T23:36:10.630125+0000 mgr.smithi099.hzjdah (mgr.14182) 367 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:11.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.oybhgp ... 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:36:11.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.oybhgp ... 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: cephadm 2024-01-27T23:36:10.630896+0000 mgr.smithi099.hzjdah (mgr.14182) 368 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: audit 2024-01-27T23:36:10.631733+0000 mon.smithi099 (mon.0) 735 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.oybhgp"}]: dispatch 2024-01-27T23:36:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: cephadm 2024-01-27T23:36:10.633284+0000 mgr.smithi099.hzjdah (mgr.14182) 369 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.oybhgp ... 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: cephadm 2024-01-27T23:36:10.637832+0000 mgr.smithi099.hzjdah (mgr.14182) 370 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: cephadm 2024-01-27T23:36:10.639877+0000 mgr.smithi099.hzjdah (mgr.14182) 371 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:36:11.805 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:11 smithi142 bash[20347]: cluster 2024-01-27T23:36:10.640897+0000 mgr.smithi099.hzjdah (mgr.14182) 372 : cluster [DBG] pgmap v299: 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-01-27T23:36:11.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: audit 2024-01-27T23:36:10.374980+0000 mon.smithi099 (mon.0) 734 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:11.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: cephadm 2024-01-27T23:36:10.630125+0000 mgr.smithi099.hzjdah (mgr.14182) 367 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:11.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:11.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.oybhgp ... 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.oybhgp ... 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: cephadm 2024-01-27T23:36:10.630896+0000 mgr.smithi099.hzjdah (mgr.14182) 368 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: audit 2024-01-27T23:36:10.631733+0000 mon.smithi099 (mon.0) 735 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.oybhgp"}]: dispatch 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: cephadm 2024-01-27T23:36:10.633284+0000 mgr.smithi099.hzjdah (mgr.14182) 369 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:11.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.oybhgp ... 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: cephadm 2024-01-27T23:36:10.637832+0000 mgr.smithi099.hzjdah (mgr.14182) 370 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: cephadm 2024-01-27T23:36:10.639877+0000 mgr.smithi099.hzjdah (mgr.14182) 371 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:36:11.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:11 smithi099 bash[16328]: cluster 2024-01-27T23:36:10.640897+0000 mgr.smithi099.hzjdah (mgr.14182) 372 : cluster [DBG] pgmap v299: 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-01-27T23:36:12.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:12 smithi142 bash[20347]: cluster 2024-01-27T23:36:11.371921+0000 mon.smithi099 (mon.0) 736 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:36:12.803 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:12.803 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:12.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:12 smithi099 bash[16328]: cluster 2024-01-27T23:36:11.371921+0000 mon.smithi099 (mon.0) 736 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:36:13.473 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:13.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:13 smithi142 bash[20347]: cluster 2024-01-27T23:36:12.642711+0000 mgr.smithi099.hzjdah (mgr.14182) 373 : cluster [DBG] pgmap v300: 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-01-27T23:36:13.801 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:13 smithi142 bash[20347]: audit 2024-01-27T23:36:12.797241+0000 mgr.smithi099.hzjdah (mgr.14182) 374 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:13.802 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:13 smithi142 bash[20347]: audit 2024-01-27T23:36:13.164861+0000 mon.smithi099 (mon.0) 737 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:13.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:13 smithi099 bash[16328]: cluster 2024-01-27T23:36:12.642711+0000 mgr.smithi099.hzjdah (mgr.14182) 373 : cluster [DBG] pgmap v300: 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-01-27T23:36:13.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:13 smithi099 bash[16328]: audit 2024-01-27T23:36:12.797241+0000 mgr.smithi099.hzjdah (mgr.14182) 374 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:13.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:13 smithi099 bash[16328]: audit 2024-01-27T23:36:13.164861+0000 mon.smithi099 (mon.0) 737 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:14.474 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:16.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:15 smithi142 bash[20347]: cluster 2024-01-27T23:36:14.644089+0000 mgr.smithi099.hzjdah (mgr.14182) 375 : cluster [DBG] pgmap v301: 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-01-27T23:36:16.110 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:15 smithi099 bash[16328]: cluster 2024-01-27T23:36:14.644089+0000 mgr.smithi099.hzjdah (mgr.14182) 375 : cluster [DBG] pgmap v301: 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-01-27T23:36:17.671 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:17.671 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:18.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:17 smithi142 bash[20347]: cluster 2024-01-27T23:36:16.645782+0000 mgr.smithi099.hzjdah (mgr.14182) 376 : cluster [DBG] pgmap v302: 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-01-27T23:36:18.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:17 smithi099 bash[16328]: cluster 2024-01-27T23:36:16.645782+0000 mgr.smithi099.hzjdah (mgr.14182) 376 : cluster [DBG] pgmap v302: 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-01-27T23:36:18.305 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:19.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:18 smithi142 bash[20347]: audit 2024-01-27T23:36:17.669551+0000 mgr.smithi099.hzjdah (mgr.14182) 377 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:19.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:18 smithi099 bash[16328]: audit 2024-01-27T23:36:17.669551+0000 mgr.smithi099.hzjdah (mgr.14182) 377 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:19.306 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:20.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:19 smithi142 bash[20347]: cluster 2024-01-27T23:36:18.647417+0000 mgr.smithi099.hzjdah (mgr.14182) 378 : cluster [DBG] pgmap v303: 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-01-27T23:36:20.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:19 smithi099 bash[16328]: cluster 2024-01-27T23:36:18.647417+0000 mgr.smithi099.hzjdah (mgr.14182) 378 : cluster [DBG] pgmap v303: 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-01-27T23:36:22.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:21 smithi142 bash[20347]: cluster 2024-01-27T23:36:20.648863+0000 mgr.smithi099.hzjdah (mgr.14182) 379 : cluster [DBG] pgmap v304: 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-01-27T23:36:22.075 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:21 smithi099 bash[16328]: cluster 2024-01-27T23:36:20.648863+0000 mgr.smithi099.hzjdah (mgr.14182) 379 : cluster [DBG] pgmap v304: 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-01-27T23:36:22.522 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:22.522 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:23.145 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:24.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:23 smithi142 bash[20347]: audit 2024-01-27T23:36:22.512923+0000 mgr.smithi099.hzjdah (mgr.14182) 380 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:24.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:23 smithi142 bash[20347]: cluster 2024-01-27T23:36:22.650389+0000 mgr.smithi099.hzjdah (mgr.14182) 381 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:24.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:23 smithi099 bash[16328]: audit 2024-01-27T23:36:22.512923+0000 mgr.smithi099.hzjdah (mgr.14182) 380 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:24.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:23 smithi099 bash[16328]: cluster 2024-01-27T23:36:22.650389+0000 mgr.smithi099.hzjdah (mgr.14182) 381 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:24.146 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:25.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:25 smithi099 bash[16328]: cluster 2024-01-27T23:36:24.651769+0000 mgr.smithi099.hzjdah (mgr.14182) 382 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:25.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:25 smithi099 bash[16328]: audit 2024-01-27T23:36:25.375698+0000 mon.smithi099 (mon.0) 738 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:26.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:25 smithi142 bash[20347]: cluster 2024-01-27T23:36:24.651769+0000 mgr.smithi099.hzjdah (mgr.14182) 382 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:26.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:25 smithi142 bash[20347]: audit 2024-01-27T23:36:25.375698+0000 mon.smithi099 (mon.0) 738 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:36:27.269 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:27.270 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:27.883 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:28.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:27 smithi142 bash[20347]: cluster 2024-01-27T23:36:26.653177+0000 mgr.smithi099.hzjdah (mgr.14182) 383 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:28.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:27 smithi099 bash[16328]: cluster 2024-01-27T23:36:26.653177+0000 mgr.smithi099.hzjdah (mgr.14182) 383 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:28.884 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:29.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:28 smithi142 bash[20347]: audit 2024-01-27T23:36:27.267836+0000 mgr.smithi099.hzjdah (mgr.14182) 384 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:29.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:28 smithi099 bash[16328]: audit 2024-01-27T23:36:27.267836+0000 mgr.smithi099.hzjdah (mgr.14182) 384 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:30.038 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:29 smithi099 bash[16328]: cluster 2024-01-27T23:36:28.654751+0000 mgr.smithi099.hzjdah (mgr.14182) 385 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:30.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:29 smithi142 bash[20347]: cluster 2024-01-27T23:36:28.654751+0000 mgr.smithi099.hzjdah (mgr.14182) 385 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:31.830 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:31 smithi099 bash[16328]: cluster 2024-01-27T23:36:30.655753+0000 mgr.smithi099.hzjdah (mgr.14182) 386 : 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-01-27T23:36:31.967 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:31.967 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:32.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:31 smithi142 bash[20347]: cluster 2024-01-27T23:36:30.655753+0000 mgr.smithi099.hzjdah (mgr.14182) 386 : 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-01-27T23:36:32.613 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:33.615 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:34.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:33 smithi142 bash[20347]: audit 2024-01-27T23:36:31.965518+0000 mgr.smithi099.hzjdah (mgr.14182) 387 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:34.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:33 smithi142 bash[20347]: cluster 2024-01-27T23:36:32.657715+0000 mgr.smithi099.hzjdah (mgr.14182) 388 : 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-01-27T23:36:34.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:33 smithi099 bash[16328]: audit 2024-01-27T23:36:31.965518+0000 mgr.smithi099.hzjdah (mgr.14182) 387 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:34.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:33 smithi099 bash[16328]: cluster 2024-01-27T23:36:32.657715+0000 mgr.smithi099.hzjdah (mgr.14182) 388 : 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-01-27T23:36:36.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:35 smithi142 bash[20347]: cluster 2024-01-27T23:36:34.659156+0000 mgr.smithi099.hzjdah (mgr.14182) 389 : 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-01-27T23:36:36.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:35 smithi099 bash[16328]: cluster 2024-01-27T23:36:34.659156+0000 mgr.smithi099.hzjdah (mgr.14182) 389 : 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-01-27T23:36:36.868 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:36.868 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:37.492 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:38.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:37 smithi142 bash[20347]: cluster 2024-01-27T23:36:36.660586+0000 mgr.smithi099.hzjdah (mgr.14182) 390 : 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-01-27T23:36:38.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:37 smithi142 bash[20347]: audit 2024-01-27T23:36:36.858383+0000 mgr.smithi099.hzjdah (mgr.14182) 391 : audit [DBG] from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:38.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:37 smithi099 bash[16328]: cluster 2024-01-27T23:36:36.660586+0000 mgr.smithi099.hzjdah (mgr.14182) 390 : 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-01-27T23:36:38.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:37 smithi099 bash[16328]: audit 2024-01-27T23:36:36.858383+0000 mgr.smithi099.hzjdah (mgr.14182) 391 : audit [DBG] from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:38.493 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:39.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:39 smithi099 bash[16328]: cluster 2024-01-27T23:36:38.661666+0000 mgr.smithi099.hzjdah (mgr.14182) 392 : 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-01-27T23:36:40.051 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:39 smithi142 bash[20347]: cluster 2024-01-27T23:36:38.661666+0000 mgr.smithi099.hzjdah (mgr.14182) 392 : 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-01-27T23:36:41.582 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:41.582 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:42.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:41 smithi142 bash[20347]: cluster 2024-01-27T23:36:40.662484+0000 mgr.smithi099.hzjdah (mgr.14182) 393 : 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-01-27T23:36:42.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:41 smithi099 bash[16328]: cluster 2024-01-27T23:36:40.662484+0000 mgr.smithi099.hzjdah (mgr.14182) 393 : 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-01-27T23:36:42.254 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:43.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:42 smithi142 bash[20347]: audit 2024-01-27T23:36:41.572280+0000 mgr.smithi099.hzjdah (mgr.14182) 394 : audit [DBG] from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:42 smithi099 bash[16328]: audit 2024-01-27T23:36:41.572280+0000 mgr.smithi099.hzjdah (mgr.14182) 394 : audit [DBG] from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:43.255 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:44.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:43 smithi142 bash[20347]: cluster 2024-01-27T23:36:42.664317+0000 mgr.smithi099.hzjdah (mgr.14182) 395 : 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-01-27T23:36:44.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:43 smithi099 bash[16328]: cluster 2024-01-27T23:36:42.664317+0000 mgr.smithi099.hzjdah (mgr.14182) 395 : 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-01-27T23:36:46.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:45 smithi142 bash[20347]: cluster 2024-01-27T23:36:44.665382+0000 mgr.smithi099.hzjdah (mgr.14182) 396 : 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-01-27T23:36:46.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:45 smithi099 bash[16328]: cluster 2024-01-27T23:36:44.665382+0000 mgr.smithi099.hzjdah (mgr.14182) 396 : 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-01-27T23:36:46.573 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:46.574 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:47.252 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:48.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:47 smithi142 bash[20347]: audit 2024-01-27T23:36:46.568459+0000 mgr.smithi099.hzjdah (mgr.14182) 397 : audit [DBG] from='client.14716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:48.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:47 smithi142 bash[20347]: cluster 2024-01-27T23:36:46.667069+0000 mgr.smithi099.hzjdah (mgr.14182) 398 : 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-01-27T23:36:48.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:47 smithi099 bash[16328]: audit 2024-01-27T23:36:46.568459+0000 mgr.smithi099.hzjdah (mgr.14182) 397 : audit [DBG] from='client.14716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:48.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:47 smithi099 bash[16328]: cluster 2024-01-27T23:36:46.667069+0000 mgr.smithi099.hzjdah (mgr.14182) 398 : 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-01-27T23:36:48.253 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:50.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:49 smithi142 bash[20347]: cluster 2024-01-27T23:36:48.668662+0000 mgr.smithi099.hzjdah (mgr.14182) 399 : 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-01-27T23:36:50.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:49 smithi099 bash[16328]: cluster 2024-01-27T23:36:48.668662+0000 mgr.smithi099.hzjdah (mgr.14182) 399 : 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-01-27T23:36:51.544 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:51.545 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:52.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:51 smithi099 bash[16328]: cluster 2024-01-27T23:36:50.670131+0000 mgr.smithi099.hzjdah (mgr.14182) 400 : 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-01-27T23:36:52.173 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:52.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:51 smithi142 bash[20347]: cluster 2024-01-27T23:36:50.670131+0000 mgr.smithi099.hzjdah (mgr.14182) 400 : 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-01-27T23:36:53.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:52 smithi099 bash[16328]: audit 2024-01-27T23:36:51.538389+0000 mgr.smithi099.hzjdah (mgr.14182) 401 : audit [DBG] from='client.14720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:53.174 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:53.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:52 smithi142 bash[20347]: audit 2024-01-27T23:36:51.538389+0000 mgr.smithi099.hzjdah (mgr.14182) 401 : audit [DBG] from='client.14720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:53 smithi099 bash[16328]: cluster 2024-01-27T23:36:52.672049+0000 mgr.smithi099.hzjdah (mgr.14182) 402 : 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-01-27T23:36:54.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:53 smithi142 bash[20347]: cluster 2024-01-27T23:36:52.672049+0000 mgr.smithi099.hzjdah (mgr.14182) 402 : 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-01-27T23:36:56.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:55 smithi099 bash[16328]: cluster 2024-01-27T23:36:54.673065+0000 mgr.smithi099.hzjdah (mgr.14182) 403 : 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-01-27T23:36:56.261 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:36:56.261 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:56.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:55 smithi142 bash[20347]: cluster 2024-01-27T23:36:54.673065+0000 mgr.smithi099.hzjdah (mgr.14182) 403 : 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-01-27T23:36:56.943 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:57.944 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:58.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:57 smithi099 bash[16328]: audit 2024-01-27T23:36:56.253950+0000 mgr.smithi099.hzjdah (mgr.14182) 404 : audit [DBG] from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:58.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:57 smithi099 bash[16328]: cluster 2024-01-27T23:36:56.674751+0000 mgr.smithi099.hzjdah (mgr.14182) 405 : 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-01-27T23:36:58.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:57 smithi142 bash[20347]: audit 2024-01-27T23:36:56.253950+0000 mgr.smithi099.hzjdah (mgr.14182) 404 : audit [DBG] from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:58.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:57 smithi142 bash[20347]: cluster 2024-01-27T23:36:56.674751+0000 mgr.smithi099.hzjdah (mgr.14182) 405 : 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-01-27T23:37:00.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:36:59 smithi142 bash[20347]: cluster 2024-01-27T23:36:58.676348+0000 mgr.smithi099.hzjdah (mgr.14182) 406 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:00.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:36:59 smithi099 bash[16328]: cluster 2024-01-27T23:36:58.676348+0000 mgr.smithi099.hzjdah (mgr.14182) 406 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:01.086 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:01.086 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:01.719 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:02.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:01 smithi099 bash[16328]: cluster 2024-01-27T23:37:00.677743+0000 mgr.smithi099.hzjdah (mgr.14182) 407 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:02.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:01 smithi142 bash[20347]: cluster 2024-01-27T23:37:00.677743+0000 mgr.smithi099.hzjdah (mgr.14182) 407 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:02.720 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:03.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:02 smithi099 bash[16328]: audit 2024-01-27T23:37:01.083764+0000 mgr.smithi099.hzjdah (mgr.14182) 408 : audit [DBG] from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:03.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:02 smithi142 bash[20347]: audit 2024-01-27T23:37:01.083764+0000 mgr.smithi099.hzjdah (mgr.14182) 408 : audit [DBG] from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:04.057 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:03 smithi099 bash[16328]: cluster 2024-01-27T23:37:02.679536+0000 mgr.smithi099.hzjdah (mgr.14182) 409 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:04.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:03 smithi142 bash[20347]: cluster 2024-01-27T23:37:02.679536+0000 mgr.smithi099.hzjdah (mgr.14182) 409 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:05.839 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:05.839 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:06.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:05 smithi142 bash[20347]: cluster 2024-01-27T23:37:04.680748+0000 mgr.smithi099.hzjdah (mgr.14182) 410 : cluster [DBG] pgmap v326: 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-01-27T23:37:06.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:05 smithi099 bash[16328]: cluster 2024-01-27T23:37:04.680748+0000 mgr.smithi099.hzjdah (mgr.14182) 410 : cluster [DBG] pgmap v326: 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-01-27T23:37:06.505 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:07.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:06 smithi142 bash[20347]: audit 2024-01-27T23:37:05.837022+0000 mgr.smithi099.hzjdah (mgr.14182) 411 : audit [DBG] from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:07.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:06 smithi099 bash[16328]: audit 2024-01-27T23:37:05.837022+0000 mgr.smithi099.hzjdah (mgr.14182) 411 : audit [DBG] from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:07.506 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:08.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:07 smithi142 bash[20347]: cluster 2024-01-27T23:37:06.682452+0000 mgr.smithi099.hzjdah (mgr.14182) 412 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:37:08.330 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:07 smithi099 bash[16328]: cluster 2024-01-27T23:37:06.682452+0000 mgr.smithi099.hzjdah (mgr.14182) 412 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:37:10.279 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:09 smithi099 bash[16328]: cluster 2024-01-27T23:37:08.684013+0000 mgr.smithi099.hzjdah (mgr.14182) 413 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:37:10.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:09 smithi142 bash[20347]: cluster 2024-01-27T23:37:08.684013+0000 mgr.smithi099.hzjdah (mgr.14182) 413 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:37:10.712 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:10.712 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:11.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:10 smithi099 bash[16328]: audit 2024-01-27T23:37:10.643934+0000 mon.smithi099 (mon.0) 739 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:37:11.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:10 smithi142 bash[20347]: audit 2024-01-27T23:37:10.643934+0000 mon.smithi099 (mon.0) 739 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:37:11.327 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:12.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:11 smithi142 bash[20347]: cluster 2024-01-27T23:37:10.685003+0000 mgr.smithi099.hzjdah (mgr.14182) 414 : cluster [DBG] pgmap v329: 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-01-27T23:37:12.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:11 smithi142 bash[20347]: audit 2024-01-27T23:37:10.709666+0000 mgr.smithi099.hzjdah (mgr.14182) 415 : audit [DBG] from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:12.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:11 smithi142 bash[20347]: audit 2024-01-27T23:37:10.923912+0000 mon.smithi099 (mon.0) 740 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:37:12.329 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:12.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:11 smithi099 bash[16328]: cluster 2024-01-27T23:37:10.685003+0000 mgr.smithi099.hzjdah (mgr.14182) 414 : cluster [DBG] pgmap v329: 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-01-27T23:37:12.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:11 smithi099 bash[16328]: audit 2024-01-27T23:37:10.709666+0000 mgr.smithi099.hzjdah (mgr.14182) 415 : audit [DBG] from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:12.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:11 smithi099 bash[16328]: audit 2024-01-27T23:37:10.923912+0000 mon.smithi099 (mon.0) 740 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:37:14.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:13 smithi099 bash[16328]: cluster 2024-01-27T23:37:12.686900+0000 mgr.smithi099.hzjdah (mgr.14182) 416 : cluster [DBG] pgmap v330: 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-01-27T23:37:14.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:13 smithi142 bash[20347]: cluster 2024-01-27T23:37:12.686900+0000 mgr.smithi099.hzjdah (mgr.14182) 416 : cluster [DBG] pgmap v330: 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-01-27T23:37:15.566 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:15.567 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.070114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.070327Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.070447Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.070558Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.070773Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:36:02.070667Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.071201Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:16.231 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:15 smithi099 bash[16328]: cluster 2024-01-27T23:37:14.688314+0000 mgr.smithi099.hzjdah (mgr.14182) 417 : cluster [DBG] pgmap v331: 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-01-27T23:37:16.233 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:16.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:15 smithi142 bash[20347]: cluster 2024-01-27T23:37:14.688314+0000 mgr.smithi099.hzjdah (mgr.14182) 417 : cluster [DBG] pgmap v331: 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-01-27T23:37:17.234 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:17.246 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:16 smithi099 bash[16328]: audit 2024-01-27T23:37:15.563406+0000 mgr.smithi099.hzjdah (mgr.14182) 418 : audit [DBG] from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:17.246 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:16 smithi099 bash[16328]: audit 2024-01-27T23:37:16.565669+0000 mon.smithi099 (mon.0) 741 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:37:17.246 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:16 smithi099 bash[16328]: audit 2024-01-27T23:37:16.863878+0000 mon.smithi099 (mon.0) 742 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:37:17.246 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:16 smithi099 bash[16328]: audit 2024-01-27T23:37:16.865780+0000 mon.smithi099 (mon.0) 743 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:37:17.246 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:16 smithi099 bash[16328]: audit 2024-01-27T23:37:16.878025+0000 mon.smithi099 (mon.0) 744 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:37:17.247 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:16 smithi099 bash[16328]: audit 2024-01-27T23:37:16.890628+0000 mon.smithi099 (mon.0) 745 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:37:17.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:16 smithi142 bash[20347]: audit 2024-01-27T23:37:15.563406+0000 mgr.smithi099.hzjdah (mgr.14182) 418 : audit [DBG] from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:17.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:16 smithi142 bash[20347]: audit 2024-01-27T23:37:16.565669+0000 mon.smithi099 (mon.0) 741 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:37:17.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:16 smithi142 bash[20347]: audit 2024-01-27T23:37:16.863878+0000 mon.smithi099 (mon.0) 742 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:37:17.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:16 smithi142 bash[20347]: audit 2024-01-27T23:37:16.865780+0000 mon.smithi099 (mon.0) 743 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:37:17.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:16 smithi142 bash[20347]: audit 2024-01-27T23:37:16.878025+0000 mon.smithi099 (mon.0) 744 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:37:17.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:16 smithi142 bash[20347]: audit 2024-01-27T23:37:16.890628+0000 mon.smithi099 (mon.0) 745 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:37:18.286 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:17 smithi099 bash[16328]: cluster 2024-01-27T23:37:16.690025+0000 mgr.smithi099.hzjdah (mgr.14182) 419 : cluster [DBG] pgmap v332: 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-01-27T23:37:18.286 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:17 smithi099 bash[16328]: cluster 2024-01-27T23:37:16.879148+0000 mgr.smithi099.hzjdah (mgr.14182) 420 : cluster [DBG] pgmap v333: 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-01-27T23:37:18.286 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:17 smithi099 bash[16328]: audit 2024-01-27T23:37:16.909888+0000 mon.smithi099 (mon.0) 746 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:37:18.286 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:17 smithi099 bash[16328]: cephadm 2024-01-27T23:37:16.913402+0000 mgr.smithi099.hzjdah (mgr.14182) 421 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.mcfqrs on smithi142 2024-01-27T23:37:18.286 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:17 smithi099 bash[16328]: cluster 2024-01-27T23:37:17.561027+0000 mon.smithi099 (mon.0) 747 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:37:18.286 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:17 smithi099 bash[16328]: cluster 2024-01-27T23:37:17.561092+0000 mon.smithi099 (mon.0) 748 : cluster [INF] Cluster is now healthy 2024-01-27T23:37:18.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:17 smithi142 bash[20347]: cluster 2024-01-27T23:37:16.690025+0000 mgr.smithi099.hzjdah (mgr.14182) 419 : cluster [DBG] pgmap v332: 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-01-27T23:37:18.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:17 smithi142 bash[20347]: cluster 2024-01-27T23:37:16.879148+0000 mgr.smithi099.hzjdah (mgr.14182) 420 : cluster [DBG] pgmap v333: 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-01-27T23:37:18.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:17 smithi142 bash[20347]: audit 2024-01-27T23:37:16.909888+0000 mon.smithi099 (mon.0) 746 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:37:18.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:17 smithi142 bash[20347]: cephadm 2024-01-27T23:37:16.913402+0000 mgr.smithi099.hzjdah (mgr.14182) 421 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.mcfqrs on smithi142 2024-01-27T23:37:18.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:17 smithi142 bash[20347]: cluster 2024-01-27T23:37:17.561027+0000 mon.smithi099 (mon.0) 747 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:37:18.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:17 smithi142 bash[20347]: cluster 2024-01-27T23:37:17.561092+0000 mon.smithi099 (mon.0) 748 : cluster [INF] Cluster is now healthy 2024-01-27T23:37:19.974 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:19 smithi099 bash[16328]: cluster 2024-01-27T23:37:18.880309+0000 mgr.smithi099.hzjdah (mgr.14182) 422 : cluster [DBG] pgmap v334: 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-01-27T23:37:20.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:19 smithi142 bash[20347]: cluster 2024-01-27T23:37:18.880309+0000 mgr.smithi099.hzjdah (mgr.14182) 422 : cluster [DBG] pgmap v334: 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-01-27T23:37:20.344 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:20.344 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:34:56.187654Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.syvehu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:06.728496Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.oojanv on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-oojanv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.oojanv\nDeploy daemon haproxy.nfs.foo.smithi142.oojanv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.633006Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oybhgp on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oybhgp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oybhgp\nDeploy daemon haproxy.nfs.foo.smithi099.oybhgp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:36:10.637705Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gsjpbm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:20.977 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:21.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:20 smithi142 bash[20347]: audit 2024-01-27T23:37:20.749882+0000 mon.smithi099 (mon.0) 749 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.mcfqrs"}]: dispatch 2024-01-27T23:37:21.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:20 smithi099 bash[16328]: audit 2024-01-27T23:37:20.749882+0000 mon.smithi099 (mon.0) 749 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.mcfqrs"}]: dispatch 2024-01-27T23:37:21.978 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:22.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: audit 2024-01-27T23:37:20.336237+0000 mgr.smithi099.hzjdah (mgr.14182) 423 : audit [DBG] from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:22.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: cephadm 2024-01-27T23:37:20.748923+0000 mgr.smithi099.hzjdah (mgr.14182) 424 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.mcfqrs ... 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:37:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.mcfqrs ... 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: cephadm 2024-01-27T23:37:20.749205+0000 mgr.smithi099.hzjdah (mgr.14182) 425 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: cephadm 2024-01-27T23:37:20.751944+0000 mgr.smithi099.hzjdah (mgr.14182) 426 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.mcfqrs ... 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: cephadm 2024-01-27T23:37:20.756745+0000 mgr.smithi099.hzjdah (mgr.14182) 427 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.smqfsx on smithi099 2024-01-27T23:37:22.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:21 smithi099 bash[16328]: cluster 2024-01-27T23:37:20.881124+0000 mgr.smithi099.hzjdah (mgr.14182) 428 : cluster [DBG] pgmap v335: 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-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: audit 2024-01-27T23:37:20.336237+0000 mgr.smithi099.hzjdah (mgr.14182) 423 : audit [DBG] from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: cephadm 2024-01-27T23:37:20.748923+0000 mgr.smithi099.hzjdah (mgr.14182) 424 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.mcfqrs ... 2024-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.mcfqrs ... 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: cephadm 2024-01-27T23:37:20.749205+0000 mgr.smithi099.hzjdah (mgr.14182) 425 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: cephadm 2024-01-27T23:37:20.751944+0000 mgr.smithi099.hzjdah (mgr.14182) 426 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.mcfqrs ... 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:22.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:22.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:22.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: cephadm 2024-01-27T23:37:20.756745+0000 mgr.smithi099.hzjdah (mgr.14182) 427 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.smqfsx on smithi099 2024-01-27T23:37:22.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:21 smithi142 bash[20347]: cluster 2024-01-27T23:37:20.881124+0000 mgr.smithi099.hzjdah (mgr.14182) 428 : cluster [DBG] pgmap v335: 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-01-27T23:37:23.162 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:22 smithi099 bash[16328]: cluster 2024-01-27T23:37:22.882510+0000 mgr.smithi099.hzjdah (mgr.14182) 429 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 602 B/s rd, 0 op/s 2024-01-27T23:37:23.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:22 smithi142 bash[20347]: cluster 2024-01-27T23:37:22.882510+0000 mgr.smithi099.hzjdah (mgr.14182) 429 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 602 B/s rd, 0 op/s 2024-01-27T23:37:24.878 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:24 smithi099 bash[16328]: audit 2024-01-27T23:37:24.676764+0000 mon.smithi099 (mon.0) 750 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.smqfsx"}]: dispatch 2024-01-27T23:37:25.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:24 smithi142 bash[20347]: audit 2024-01-27T23:37:24.676764+0000 mon.smithi099 (mon.0) 750 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.smqfsx"}]: dispatch 2024-01-27T23:37:25.223 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:25.223 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:25.897 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:26.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: cephadm 2024-01-27T23:37:24.675769+0000 mgr.smithi099.hzjdah (mgr.14182) 430 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:26.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:26.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.smqfsx ... 2024-01-27T23:37:26.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:26.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.smqfsx ... 2024-01-27T23:37:26.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: cephadm 2024-01-27T23:37:24.676198+0000 mgr.smithi099.hzjdah (mgr.14182) 431 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: cephadm 2024-01-27T23:37:24.678177+0000 mgr.smithi099.hzjdah (mgr.14182) 432 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.smqfsx ... 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:26.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:26.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:26.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: cephadm 2024-01-27T23:37:24.682237+0000 mgr.smithi099.hzjdah (mgr.14182) 433 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:37:26.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: cephadm 2024-01-27T23:37:24.686091+0000 mgr.smithi099.hzjdah (mgr.14182) 434 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:37:26.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: cluster 2024-01-27T23:37:24.687580+0000 mgr.smithi099.hzjdah (mgr.14182) 435 : cluster [DBG] pgmap v337: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 921 B/s rd, 102 B/s wr, 1 op/s 2024-01-27T23:37:26.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:25 smithi142 bash[20347]: cluster 2024-01-27T23:37:24.698144+0000 mon.smithi099 (mon.0) 751 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:37:26.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: cephadm 2024-01-27T23:37:24.675769+0000 mgr.smithi099.hzjdah (mgr.14182) 430 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:26.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.smqfsx ... 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:37:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.smqfsx ... 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: cephadm 2024-01-27T23:37:24.676198+0000 mgr.smithi099.hzjdah (mgr.14182) 431 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: cephadm 2024-01-27T23:37:24.678177+0000 mgr.smithi099.hzjdah (mgr.14182) 432 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.smqfsx ... 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: cephadm 2024-01-27T23:37:24.682237+0000 mgr.smithi099.hzjdah (mgr.14182) 433 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: cephadm 2024-01-27T23:37:24.686091+0000 mgr.smithi099.hzjdah (mgr.14182) 434 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:37:26.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: cluster 2024-01-27T23:37:24.687580+0000 mgr.smithi099.hzjdah (mgr.14182) 435 : cluster [DBG] pgmap v337: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 921 B/s rd, 102 B/s wr, 1 op/s 2024-01-27T23:37:26.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:25 smithi099 bash[16328]: cluster 2024-01-27T23:37:24.698144+0000 mon.smithi099 (mon.0) 751 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:37:26.897 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:27.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:26 smithi142 bash[20347]: audit 2024-01-27T23:37:25.220923+0000 mgr.smithi099.hzjdah (mgr.14182) 436 : audit [DBG] from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:27.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:26 smithi099 bash[16328]: audit 2024-01-27T23:37:25.220923+0000 mgr.smithi099.hzjdah (mgr.14182) 436 : audit [DBG] from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:28.007 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:27 smithi099 bash[16328]: cluster 2024-01-27T23:37:26.689221+0000 mgr.smithi099.hzjdah (mgr.14182) 437 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 102 B/s wr, 1 op/s 2024-01-27T23:37:28.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:27 smithi142 bash[20347]: cluster 2024-01-27T23:37:26.689221+0000 mgr.smithi099.hzjdah (mgr.14182) 437 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 102 B/s wr, 1 op/s 2024-01-27T23:37:29.540 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:29 smithi099 bash[16328]: audit 2024-01-27T23:37:28.232416+0000 mon.smithi099 (mon.0) 752 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:37:29.540 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:29 smithi099 bash[16328]: cluster 2024-01-27T23:37:28.690905+0000 mgr.smithi099.hzjdah (mgr.14182) 438 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-01-27T23:37:29.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:29 smithi142 bash[20347]: audit 2024-01-27T23:37:28.232416+0000 mon.smithi099 (mon.0) 752 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:37:29.552 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:29 smithi142 bash[20347]: cluster 2024-01-27T23:37:28.690905+0000 mgr.smithi099.hzjdah (mgr.14182) 438 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-01-27T23:37:29.988 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:29.988 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:30.671 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:31.672 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:32.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:31 smithi142 bash[20347]: audit 2024-01-27T23:37:29.978646+0000 mgr.smithi099.hzjdah (mgr.14182) 439 : audit [DBG] from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:32.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:31 smithi142 bash[20347]: cluster 2024-01-27T23:37:30.692242+0000 mgr.smithi099.hzjdah (mgr.14182) 440 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-01-27T23:37:32.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:31 smithi099 bash[16328]: audit 2024-01-27T23:37:29.978646+0000 mgr.smithi099.hzjdah (mgr.14182) 439 : audit [DBG] from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:32.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:31 smithi099 bash[16328]: cluster 2024-01-27T23:37:30.692242+0000 mgr.smithi099.hzjdah (mgr.14182) 440 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-01-27T23:37:34.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:33 smithi142 bash[20347]: cluster 2024-01-27T23:37:32.694180+0000 mgr.smithi099.hzjdah (mgr.14182) 441 : cluster [DBG] pgmap v341: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-01-27T23:37:34.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:33 smithi099 bash[16328]: cluster 2024-01-27T23:37:32.694180+0000 mgr.smithi099.hzjdah (mgr.14182) 441 : cluster [DBG] pgmap v341: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-01-27T23:37:34.962 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:34.962 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:35.613 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:36.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:35 smithi142 bash[20347]: cluster 2024-01-27T23:37:34.695602+0000 mgr.smithi099.hzjdah (mgr.14182) 442 : cluster [DBG] pgmap v342: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 866 B/s rd, 86 B/s wr, 1 op/s 2024-01-27T23:37:36.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:35 smithi099 bash[16328]: cluster 2024-01-27T23:37:34.695602+0000 mgr.smithi099.hzjdah (mgr.14182) 442 : cluster [DBG] pgmap v342: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 866 B/s rd, 86 B/s wr, 1 op/s 2024-01-27T23:37:36.614 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:37.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:36 smithi142 bash[20347]: audit 2024-01-27T23:37:34.952535+0000 mgr.smithi099.hzjdah (mgr.14182) 443 : audit [DBG] from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:37.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:36 smithi099 bash[16328]: audit 2024-01-27T23:37:34.952535+0000 mgr.smithi099.hzjdah (mgr.14182) 443 : audit [DBG] from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:38.025 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:37 smithi099 bash[16328]: cluster 2024-01-27T23:37:36.697301+0000 mgr.smithi099.hzjdah (mgr.14182) 444 : cluster [DBG] pgmap v343: 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-01-27T23:37:38.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:37 smithi142 bash[20347]: cluster 2024-01-27T23:37:36.697301+0000 mgr.smithi099.hzjdah (mgr.14182) 444 : cluster [DBG] pgmap v343: 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-01-27T23:37:39.805 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:39.805 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:40.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:39 smithi142 bash[20347]: cluster 2024-01-27T23:37:38.698889+0000 mgr.smithi099.hzjdah (mgr.14182) 445 : 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-01-27T23:37:40.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:39 smithi099 bash[16328]: cluster 2024-01-27T23:37:38.698889+0000 mgr.smithi099.hzjdah (mgr.14182) 445 : 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-01-27T23:37:40.425 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:41.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:40 smithi142 bash[20347]: audit 2024-01-27T23:37:39.797235+0000 mgr.smithi099.hzjdah (mgr.14182) 446 : audit [DBG] from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:41.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:40 smithi099 bash[16328]: audit 2024-01-27T23:37:39.797235+0000 mgr.smithi099.hzjdah (mgr.14182) 446 : audit [DBG] from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:41.426 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:42.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:41 smithi142 bash[20347]: cluster 2024-01-27T23:37:40.700299+0000 mgr.smithi099.hzjdah (mgr.14182) 447 : 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-01-27T23:37:42.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:41 smithi099 bash[16328]: cluster 2024-01-27T23:37:40.700299+0000 mgr.smithi099.hzjdah (mgr.14182) 447 : 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-01-27T23:37:44.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:43 smithi142 bash[20347]: cluster 2024-01-27T23:37:42.701466+0000 mgr.smithi099.hzjdah (mgr.14182) 448 : 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-01-27T23:37:44.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:43 smithi099 bash[16328]: cluster 2024-01-27T23:37:42.701466+0000 mgr.smithi099.hzjdah (mgr.14182) 448 : 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-01-27T23:37:44.864 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:44.864 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:45.494 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:46.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:45 smithi099 bash[16328]: cluster 2024-01-27T23:37:44.702825+0000 mgr.smithi099.hzjdah (mgr.14182) 449 : 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-01-27T23:37:46.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:45 smithi099 bash[16328]: audit 2024-01-27T23:37:44.855540+0000 mgr.smithi099.hzjdah (mgr.14182) 450 : audit [DBG] from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:46.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:45 smithi142 bash[20347]: cluster 2024-01-27T23:37:44.702825+0000 mgr.smithi099.hzjdah (mgr.14182) 449 : 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-01-27T23:37:46.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:45 smithi142 bash[20347]: audit 2024-01-27T23:37:44.855540+0000 mgr.smithi099.hzjdah (mgr.14182) 450 : audit [DBG] from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:46.494 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:48.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:47 smithi099 bash[16328]: cluster 2024-01-27T23:37:46.704514+0000 mgr.smithi099.hzjdah (mgr.14182) 451 : 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-01-27T23:37:48.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:47 smithi142 bash[20347]: cluster 2024-01-27T23:37:46.704514+0000 mgr.smithi099.hzjdah (mgr.14182) 451 : 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-01-27T23:37:49.480 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:49.481 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:50.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:49 smithi099 bash[16328]: cluster 2024-01-27T23:37:48.706143+0000 mgr.smithi099.hzjdah (mgr.14182) 452 : 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-01-27T23:37:50.086 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:50.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:49 smithi142 bash[20347]: cluster 2024-01-27T23:37:48.706143+0000 mgr.smithi099.hzjdah (mgr.14182) 452 : 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-01-27T23:37:51.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:50 smithi099 bash[16328]: audit 2024-01-27T23:37:49.473245+0000 mgr.smithi099.hzjdah (mgr.14182) 453 : audit [DBG] from='client.14768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:51.087 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:51.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:50 smithi142 bash[20347]: audit 2024-01-27T23:37:49.473245+0000 mgr.smithi099.hzjdah (mgr.14182) 453 : audit [DBG] from='client.14768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:52.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:51 smithi099 bash[16328]: cluster 2024-01-27T23:37:50.707616+0000 mgr.smithi099.hzjdah (mgr.14182) 454 : 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-01-27T23:37:52.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:51 smithi142 bash[20347]: cluster 2024-01-27T23:37:50.707616+0000 mgr.smithi099.hzjdah (mgr.14182) 454 : 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-01-27T23:37:54.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:53 smithi099 bash[16328]: cluster 2024-01-27T23:37:52.709525+0000 mgr.smithi099.hzjdah (mgr.14182) 455 : 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-01-27T23:37:54.200 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:54.201 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:54.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:53 smithi142 bash[20347]: cluster 2024-01-27T23:37:52.709525+0000 mgr.smithi099.hzjdah (mgr.14182) 455 : 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-01-27T23:37:54.818 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:55.819 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:56.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:55 smithi099 bash[16328]: audit 2024-01-27T23:37:54.193201+0000 mgr.smithi099.hzjdah (mgr.14182) 456 : audit [DBG] from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:56.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:55 smithi099 bash[16328]: cluster 2024-01-27T23:37:54.710915+0000 mgr.smithi099.hzjdah (mgr.14182) 457 : 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-01-27T23:37:56.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:55 smithi142 bash[20347]: audit 2024-01-27T23:37:54.193201+0000 mgr.smithi099.hzjdah (mgr.14182) 456 : audit [DBG] from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:56.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:55 smithi142 bash[20347]: cluster 2024-01-27T23:37:54.710915+0000 mgr.smithi099.hzjdah (mgr.14182) 457 : 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-01-27T23:37:58.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:57 smithi142 bash[20347]: cluster 2024-01-27T23:37:56.712588+0000 mgr.smithi099.hzjdah (mgr.14182) 458 : 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-01-27T23:37:58.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:57 smithi099 bash[16328]: cluster 2024-01-27T23:37:56.712588+0000 mgr.smithi099.hzjdah (mgr.14182) 458 : 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-01-27T23:37:58.982 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:37:58.983 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:59.618 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:00.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:37:59 smithi142 bash[20347]: cluster 2024-01-27T23:37:58.713713+0000 mgr.smithi099.hzjdah (mgr.14182) 459 : 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-01-27T23:38:00.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:37:59 smithi099 bash[16328]: cluster 2024-01-27T23:37:58.713713+0000 mgr.smithi099.hzjdah (mgr.14182) 459 : 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-01-27T23:38:00.619 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:01.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:00 smithi142 bash[20347]: audit 2024-01-27T23:37:58.980621+0000 mgr.smithi099.hzjdah (mgr.14182) 460 : audit [DBG] from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:01.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:00 smithi099 bash[16328]: audit 2024-01-27T23:37:58.980621+0000 mgr.smithi099.hzjdah (mgr.14182) 460 : audit [DBG] from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:02.009 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:01 smithi099 bash[16328]: cluster 2024-01-27T23:38:00.715136+0000 mgr.smithi099.hzjdah (mgr.14182) 461 : cluster [DBG] pgmap v355: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:02.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:01 smithi142 bash[20347]: cluster 2024-01-27T23:38:00.715136+0000 mgr.smithi099.hzjdah (mgr.14182) 461 : cluster [DBG] pgmap v355: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:03.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:03 smithi099 bash[16328]: cluster 2024-01-27T23:38:02.717063+0000 mgr.smithi099.hzjdah (mgr.14182) 462 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:03.957 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:03.958 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:04.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:03 smithi142 bash[20347]: cluster 2024-01-27T23:38:02.717063+0000 mgr.smithi099.hzjdah (mgr.14182) 462 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:04.641 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:05.642 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:06.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:05 smithi142 bash[20347]: audit 2024-01-27T23:38:03.955509+0000 mgr.smithi099.hzjdah (mgr.14182) 463 : audit [DBG] from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:06.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:05 smithi142 bash[20347]: cluster 2024-01-27T23:38:04.718497+0000 mgr.smithi099.hzjdah (mgr.14182) 464 : cluster [DBG] pgmap v357: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:06.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:05 smithi099 bash[16328]: audit 2024-01-27T23:38:03.955509+0000 mgr.smithi099.hzjdah (mgr.14182) 463 : audit [DBG] from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:06.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:05 smithi099 bash[16328]: cluster 2024-01-27T23:38:04.718497+0000 mgr.smithi099.hzjdah (mgr.14182) 464 : cluster [DBG] pgmap v357: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:08.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:07 smithi142 bash[20347]: cluster 2024-01-27T23:38:06.719668+0000 mgr.smithi099.hzjdah (mgr.14182) 465 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:08.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:07 smithi099 bash[16328]: cluster 2024-01-27T23:38:06.719668+0000 mgr.smithi099.hzjdah (mgr.14182) 465 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:08.837 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:08.838 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:09.440 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:10.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:09 smithi142 bash[20347]: cluster 2024-01-27T23:38:08.721040+0000 mgr.smithi099.hzjdah (mgr.14182) 466 : cluster [DBG] pgmap v359: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:10.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:09 smithi142 bash[20347]: audit 2024-01-27T23:38:08.835551+0000 mgr.smithi099.hzjdah (mgr.14182) 467 : audit [DBG] from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:10.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:09 smithi099 bash[16328]: cluster 2024-01-27T23:38:08.721040+0000 mgr.smithi099.hzjdah (mgr.14182) 466 : cluster [DBG] pgmap v359: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:10.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:09 smithi099 bash[16328]: audit 2024-01-27T23:38:08.835551+0000 mgr.smithi099.hzjdah (mgr.14182) 467 : audit [DBG] from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:10.441 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:12.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:11 smithi142 bash[20347]: cluster 2024-01-27T23:38:10.722245+0000 mgr.smithi099.hzjdah (mgr.14182) 468 : cluster [DBG] pgmap v360: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:12.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:11 smithi099 bash[16328]: cluster 2024-01-27T23:38:10.722245+0000 mgr.smithi099.hzjdah (mgr.14182) 468 : cluster [DBG] pgmap v360: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:13.557 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:13.558 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:14.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:13 smithi142 bash[20347]: cluster 2024-01-27T23:38:12.724200+0000 mgr.smithi099.hzjdah (mgr.14182) 469 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:14.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:13 smithi099 bash[16328]: cluster 2024-01-27T23:38:12.724200+0000 mgr.smithi099.hzjdah (mgr.14182) 469 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:14.215 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:15.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:14 smithi142 bash[20347]: audit 2024-01-27T23:38:13.547038+0000 mgr.smithi099.hzjdah (mgr.14182) 470 : audit [DBG] from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:15.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:14 smithi099 bash[16328]: audit 2024-01-27T23:38:13.547038+0000 mgr.smithi099.hzjdah (mgr.14182) 470 : audit [DBG] from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:15.217 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:16.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:15 smithi142 bash[20347]: cluster 2024-01-27T23:38:14.725627+0000 mgr.smithi099.hzjdah (mgr.14182) 471 : cluster [DBG] pgmap v362: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:16.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:15 smithi099 bash[16328]: cluster 2024-01-27T23:38:14.725627+0000 mgr.smithi099.hzjdah (mgr.14182) 471 : cluster [DBG] pgmap v362: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:18.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:17 smithi099 bash[16328]: cluster 2024-01-27T23:38:16.727242+0000 mgr.smithi099.hzjdah (mgr.14182) 472 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:18.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:17 smithi142 bash[20347]: cluster 2024-01-27T23:38:16.727242+0000 mgr.smithi099.hzjdah (mgr.14182) 472 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:18.379 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:18.379 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:19.021 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:20.022 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:20.033 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:19 smithi099 bash[16328]: audit 2024-01-27T23:38:18.373495+0000 mgr.smithi099.hzjdah (mgr.14182) 473 : audit [DBG] from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:20.033 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:19 smithi099 bash[16328]: cluster 2024-01-27T23:38:18.728842+0000 mgr.smithi099.hzjdah (mgr.14182) 474 : cluster [DBG] pgmap v364: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:20.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:19 smithi142 bash[20347]: audit 2024-01-27T23:38:18.373495+0000 mgr.smithi099.hzjdah (mgr.14182) 473 : audit [DBG] from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:20.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:19 smithi142 bash[20347]: cluster 2024-01-27T23:38:18.728842+0000 mgr.smithi099.hzjdah (mgr.14182) 474 : cluster [DBG] pgmap v364: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:22.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:21 smithi142 bash[20347]: cluster 2024-01-27T23:38:20.730295+0000 mgr.smithi099.hzjdah (mgr.14182) 475 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:22.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:21 smithi099 bash[16328]: cluster 2024-01-27T23:38:20.730295+0000 mgr.smithi099.hzjdah (mgr.14182) 475 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:23.227 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:23.227 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:23.839 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:24.052 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:23 smithi142 bash[20347]: cluster 2024-01-27T23:38:22.732421+0000 mgr.smithi099.hzjdah (mgr.14182) 476 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:24.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:23 smithi099 bash[16328]: cluster 2024-01-27T23:38:22.732421+0000 mgr.smithi099.hzjdah (mgr.14182) 476 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:24.840 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:25.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:24 smithi099 bash[16328]: audit 2024-01-27T23:38:23.224461+0000 mgr.smithi099.hzjdah (mgr.14182) 477 : audit [DBG] from='client.14796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:25.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:24 smithi099 bash[16328]: audit 2024-01-27T23:38:24.692908+0000 mon.smithi099 (mon.0) 753 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:38:25.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:24 smithi142 bash[20347]: audit 2024-01-27T23:38:23.224461+0000 mgr.smithi099.hzjdah (mgr.14182) 477 : audit [DBG] from='client.14796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:25.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:24 smithi142 bash[20347]: audit 2024-01-27T23:38:24.692908+0000 mon.smithi099 (mon.0) 753 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:38:26.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:25 smithi099 bash[16328]: cluster 2024-01-27T23:38:24.733914+0000 mgr.smithi099.hzjdah (mgr.14182) 478 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:26.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:25 smithi099 bash[16328]: audit 2024-01-27T23:38:25.006631+0000 mon.smithi099 (mon.0) 754 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:38:26.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:25 smithi099 bash[16328]: audit 2024-01-27T23:38:25.288829+0000 mon.smithi099 (mon.0) 755 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:38:26.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:25 smithi099 bash[16328]: audit 2024-01-27T23:38:25.290572+0000 mon.smithi099 (mon.0) 756 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:38:26.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:25 smithi099 bash[16328]: audit 2024-01-27T23:38:25.305487+0000 mon.smithi099 (mon.0) 757 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:38:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:25 smithi099 bash[16328]: audit 2024-01-27T23:38:25.311480+0000 mon.smithi099 (mon.0) 758 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:38:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:25 smithi099 bash[16328]: audit 2024-01-27T23:38:25.324468+0000 mon.smithi099 (mon.0) 759 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:38:26.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:25 smithi142 bash[20347]: cluster 2024-01-27T23:38:24.733914+0000 mgr.smithi099.hzjdah (mgr.14182) 478 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:26.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:25 smithi142 bash[20347]: audit 2024-01-27T23:38:25.006631+0000 mon.smithi099 (mon.0) 754 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:38:26.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:25 smithi142 bash[20347]: audit 2024-01-27T23:38:25.288829+0000 mon.smithi099 (mon.0) 755 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:38:26.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:25 smithi142 bash[20347]: audit 2024-01-27T23:38:25.290572+0000 mon.smithi099 (mon.0) 756 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:38:26.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:25 smithi142 bash[20347]: audit 2024-01-27T23:38:25.305487+0000 mon.smithi099 (mon.0) 757 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:38:26.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:25 smithi142 bash[20347]: audit 2024-01-27T23:38:25.311480+0000 mon.smithi099 (mon.0) 758 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:38:26.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:25 smithi142 bash[20347]: audit 2024-01-27T23:38:25.324468+0000 mon.smithi099 (mon.0) 759 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:38:27.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:26 smithi099 bash[16328]: cluster 2024-01-27T23:38:25.306450+0000 mgr.smithi099.hzjdah (mgr.14182) 479 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:38:27.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:26 smithi099 bash[16328]: cephadm 2024-01-27T23:38:25.328336+0000 mgr.smithi099.hzjdah (mgr.14182) 480 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.qciedl on smithi142 2024-01-27T23:38:27.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:26 smithi099 bash[16328]: cluster 2024-01-27T23:38:26.301945+0000 mon.smithi099 (mon.0) 760 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:38:27.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:26 smithi099 bash[16328]: cluster 2024-01-27T23:38:26.302015+0000 mon.smithi099 (mon.0) 761 : cluster [INF] Cluster is now healthy 2024-01-27T23:38:27.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:26 smithi142 bash[20347]: cluster 2024-01-27T23:38:25.306450+0000 mgr.smithi099.hzjdah (mgr.14182) 479 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:38:27.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:26 smithi142 bash[20347]: cephadm 2024-01-27T23:38:25.328336+0000 mgr.smithi099.hzjdah (mgr.14182) 480 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.qciedl on smithi142 2024-01-27T23:38:27.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:26 smithi142 bash[20347]: cluster 2024-01-27T23:38:26.301945+0000 mon.smithi099 (mon.0) 760 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:38:27.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:26 smithi142 bash[20347]: cluster 2024-01-27T23:38:26.302015+0000 mon.smithi099 (mon.0) 761 : cluster [INF] Cluster is now healthy 2024-01-27T23:38:28.068 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:28.069 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:36:10.639756Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ilwyvj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:28.695 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:29.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:28 smithi099 bash[16328]: cluster 2024-01-27T23:38:27.307991+0000 mgr.smithi099.hzjdah (mgr.14182) 481 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:38:29.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:28 smithi142 bash[20347]: cluster 2024-01-27T23:38:27.307991+0000 mgr.smithi099.hzjdah (mgr.14182) 481 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:38:29.696 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:30.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:29 smithi099 bash[16328]: audit 2024-01-27T23:38:28.060484+0000 mgr.smithi099.hzjdah (mgr.14182) 482 : audit [DBG] from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:30.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:29 smithi099 bash[16328]: audit 2024-01-27T23:38:29.485476+0000 mon.smithi099 (mon.0) 762 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.qciedl"}]: dispatch 2024-01-27T23:38:30.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:29 smithi142 bash[20347]: audit 2024-01-27T23:38:28.060484+0000 mgr.smithi099.hzjdah (mgr.14182) 482 : audit [DBG] from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:30.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:29 smithi142 bash[20347]: audit 2024-01-27T23:38:29.485476+0000 mon.smithi099 (mon.0) 762 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.qciedl"}]: dispatch 2024-01-27T23:38:31.050 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: cluster 2024-01-27T23:38:29.309424+0000 mgr.smithi099.hzjdah (mgr.14182) 483 : cluster [DBG] pgmap v370: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:38:31.050 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: cephadm 2024-01-27T23:38:29.484287+0000 mgr.smithi099.hzjdah (mgr.14182) 484 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.050 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:31.050 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.050 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.050 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:31.050 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.qciedl ... 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:31.051 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.qciedl ... 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: cephadm 2024-01-27T23:38:29.484757+0000 mgr.smithi099.hzjdah (mgr.14182) 485 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: cephadm 2024-01-27T23:38:29.487390+0000 mgr.smithi099.hzjdah (mgr.14182) 486 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.052 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.053 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:31.053 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.053 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.qciedl ... 2024-01-27T23:38:31.053 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.053 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:31.053 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:31.053 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:31.053 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.053 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:30 smithi099 bash[16328]: cephadm 2024-01-27T23:38:29.491938+0000 mgr.smithi099.hzjdah (mgr.14182) 487 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.idocsy on smithi099 2024-01-27T23:38:31.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: cluster 2024-01-27T23:38:29.309424+0000 mgr.smithi099.hzjdah (mgr.14182) 483 : cluster [DBG] pgmap v370: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:38:31.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: cephadm 2024-01-27T23:38:29.484287+0000 mgr.smithi099.hzjdah (mgr.14182) 484 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.qciedl ... 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:38:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.qciedl ... 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: cephadm 2024-01-27T23:38:29.484757+0000 mgr.smithi099.hzjdah (mgr.14182) 485 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: cephadm 2024-01-27T23:38:29.487390+0000 mgr.smithi099.hzjdah (mgr.14182) 486 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.qciedl ... 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:30 smithi142 bash[20347]: cephadm 2024-01-27T23:38:29.491938+0000 mgr.smithi099.hzjdah (mgr.14182) 487 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.idocsy on smithi099 2024-01-27T23:38:32.807 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:32.807 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:20.751644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.mcfqrs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-mcfqrs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.mcfqrs\nDeploy daemon haproxy.nfs.foo.smithi142.mcfqrs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.677930Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.smqfsx on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-smqfsx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.smqfsx\nDeploy daemon haproxy.nfs.foo.smithi099.smqfsx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:24.682028Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.edoyop on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:33.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:32 smithi142 bash[20347]: cluster 2024-01-27T23:38:31.310671+0000 mgr.smithi099.hzjdah (mgr.14182) 488 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:38:33.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:32 smithi099 bash[16328]: cluster 2024-01-27T23:38:31.310671+0000 mgr.smithi099.hzjdah (mgr.14182) 488 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:38:33.539 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:34.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:33 smithi142 bash[20347]: audit 2024-01-27T23:38:32.804548+0000 mgr.smithi099.hzjdah (mgr.14182) 489 : audit [DBG] from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:34.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:33 smithi142 bash[20347]: audit 2024-01-27T23:38:33.553695+0000 mon.smithi099 (mon.0) 763 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.idocsy"}]: dispatch 2024-01-27T23:38:34.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:33 smithi099 bash[16328]: audit 2024-01-27T23:38:32.804548+0000 mgr.smithi099.hzjdah (mgr.14182) 489 : audit [DBG] from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:34.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:33 smithi099 bash[16328]: audit 2024-01-27T23:38:33.553695+0000 mon.smithi099 (mon.0) 763 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.idocsy"}]: dispatch 2024-01-27T23:38:34.540 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:35.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: cluster 2024-01-27T23:38:33.312281+0000 mgr.smithi099.hzjdah (mgr.14182) 490 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: cephadm 2024-01-27T23:38:33.552591+0000 mgr.smithi099.hzjdah (mgr.14182) 491 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.idocsy ... 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.idocsy ... 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: cephadm 2024-01-27T23:38:33.553105+0000 mgr.smithi099.hzjdah (mgr.14182) 492 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: cephadm 2024-01-27T23:38:33.554927+0000 mgr.smithi099.hzjdah (mgr.14182) 493 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.idocsy ... 2024-01-27T23:38:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: cephadm 2024-01-27T23:38:33.559121+0000 mgr.smithi099.hzjdah (mgr.14182) 494 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:38:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: cephadm 2024-01-27T23:38:33.562313+0000 mgr.smithi099.hzjdah (mgr.14182) 495 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:38:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: cluster 2024-01-27T23:38:33.563270+0000 mgr.smithi099.hzjdah (mgr.14182) 496 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:38:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:34 smithi142 bash[20347]: cluster 2024-01-27T23:38:33.834191+0000 mon.smithi099 (mon.0) 764 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:38:35.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: cluster 2024-01-27T23:38:33.312281+0000 mgr.smithi099.hzjdah (mgr.14182) 490 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: cephadm 2024-01-27T23:38:33.552591+0000 mgr.smithi099.hzjdah (mgr.14182) 491 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.idocsy ... 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.idocsy ... 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: cephadm 2024-01-27T23:38:33.553105+0000 mgr.smithi099.hzjdah (mgr.14182) 492 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: cephadm 2024-01-27T23:38:33.554927+0000 mgr.smithi099.hzjdah (mgr.14182) 493 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.idocsy ... 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: cephadm 2024-01-27T23:38:33.559121+0000 mgr.smithi099.hzjdah (mgr.14182) 494 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:38:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: cephadm 2024-01-27T23:38:33.562313+0000 mgr.smithi099.hzjdah (mgr.14182) 495 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:38:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: cluster 2024-01-27T23:38:33.563270+0000 mgr.smithi099.hzjdah (mgr.14182) 496 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:38:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:34 smithi099 bash[16328]: cluster 2024-01-27T23:38:33.834191+0000 mon.smithi099 (mon.0) 764 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:38:37.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:36 smithi142 bash[20347]: cluster 2024-01-27T23:38:35.564486+0000 mgr.smithi099.hzjdah (mgr.14182) 497 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:38:37.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:36 smithi099 bash[16328]: cluster 2024-01-27T23:38:35.564486+0000 mgr.smithi099.hzjdah (mgr.14182) 497 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:38:37.934 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:37.935 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:38.536 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:39.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:38 smithi142 bash[20347]: cluster 2024-01-27T23:38:37.566415+0000 mgr.smithi099.hzjdah (mgr.14182) 498 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:38:39.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:38 smithi142 bash[20347]: audit 2024-01-27T23:38:38.295214+0000 mon.smithi099 (mon.0) 765 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:38:39.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:38 smithi099 bash[16328]: cluster 2024-01-27T23:38:37.566415+0000 mgr.smithi099.hzjdah (mgr.14182) 498 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:38:39.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:38 smithi099 bash[16328]: audit 2024-01-27T23:38:38.295214+0000 mon.smithi099 (mon.0) 765 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:38:39.536 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:40.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:39 smithi142 bash[20347]: audit 2024-01-27T23:38:37.924364+0000 mgr.smithi099.hzjdah (mgr.14182) 499 : audit [DBG] from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:40.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:39 smithi099 bash[16328]: audit 2024-01-27T23:38:37.924364+0000 mgr.smithi099.hzjdah (mgr.14182) 499 : audit [DBG] from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:41.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:40 smithi099 bash[16328]: cluster 2024-01-27T23:38:39.567821+0000 mgr.smithi099.hzjdah (mgr.14182) 500 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:38:41.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:40 smithi142 bash[20347]: cluster 2024-01-27T23:38:39.567821+0000 mgr.smithi099.hzjdah (mgr.14182) 500 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:38:42.628 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:42.628 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:43.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:42 smithi099 bash[16328]: cluster 2024-01-27T23:38:41.569427+0000 mgr.smithi099.hzjdah (mgr.14182) 501 : cluster [DBG] pgmap v377: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:38:43.280 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:43.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:42 smithi142 bash[20347]: cluster 2024-01-27T23:38:41.569427+0000 mgr.smithi099.hzjdah (mgr.14182) 501 : cluster [DBG] pgmap v377: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:38:44.281 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:44.294 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:43 smithi099 bash[16328]: audit 2024-01-27T23:38:42.620313+0000 mgr.smithi099.hzjdah (mgr.14182) 502 : audit [DBG] from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:44.302 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:43 smithi142 bash[20347]: audit 2024-01-27T23:38:42.620313+0000 mgr.smithi099.hzjdah (mgr.14182) 502 : audit [DBG] from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:45.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:44 smithi142 bash[20347]: cluster 2024-01-27T23:38:43.571339+0000 mgr.smithi099.hzjdah (mgr.14182) 503 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:38:45.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:44 smithi099 bash[16328]: cluster 2024-01-27T23:38:43.571339+0000 mgr.smithi099.hzjdah (mgr.14182) 503 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:38:47.194 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:46 smithi099 bash[16328]: cluster 2024-01-27T23:38:45.572438+0000 mgr.smithi099.hzjdah (mgr.14182) 504 : 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-01-27T23:38:47.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:46 smithi142 bash[20347]: cluster 2024-01-27T23:38:45.572438+0000 mgr.smithi099.hzjdah (mgr.14182) 504 : 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-01-27T23:38:47.546 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:47.546 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:48.229 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:49.230 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:49.242 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:48 smithi099 bash[16328]: audit 2024-01-27T23:38:47.538979+0000 mgr.smithi099.hzjdah (mgr.14182) 505 : audit [DBG] from='client.14816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:49.242 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:48 smithi099 bash[16328]: cluster 2024-01-27T23:38:47.573918+0000 mgr.smithi099.hzjdah (mgr.14182) 506 : 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-01-27T23:38:49.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:48 smithi142 bash[20347]: audit 2024-01-27T23:38:47.538979+0000 mgr.smithi099.hzjdah (mgr.14182) 505 : audit [DBG] from='client.14816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:49.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:48 smithi142 bash[20347]: cluster 2024-01-27T23:38:47.573918+0000 mgr.smithi099.hzjdah (mgr.14182) 506 : 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-01-27T23:38:51.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:50 smithi099 bash[16328]: cluster 2024-01-27T23:38:49.575240+0000 mgr.smithi099.hzjdah (mgr.14182) 507 : 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-01-27T23:38:51.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:50 smithi142 bash[20347]: cluster 2024-01-27T23:38:49.575240+0000 mgr.smithi099.hzjdah (mgr.14182) 507 : 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-01-27T23:38:52.496 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:52.496 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:53.144 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:52 smithi099 bash[16328]: cluster 2024-01-27T23:38:51.577597+0000 mgr.smithi099.hzjdah (mgr.14182) 508 : 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-01-27T23:38:53.146 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:53.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:52 smithi142 bash[20347]: cluster 2024-01-27T23:38:51.577597+0000 mgr.smithi099.hzjdah (mgr.14182) 508 : 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-01-27T23:38:54.148 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:54.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:53 smithi142 bash[20347]: audit 2024-01-27T23:38:52.487767+0000 mgr.smithi099.hzjdah (mgr.14182) 509 : audit [DBG] from='client.14820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:54.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:53 smithi099 bash[16328]: audit 2024-01-27T23:38:52.487767+0000 mgr.smithi099.hzjdah (mgr.14182) 509 : audit [DBG] from='client.14820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:55.223 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:54 smithi099 bash[16328]: cluster 2024-01-27T23:38:53.579427+0000 mgr.smithi099.hzjdah (mgr.14182) 510 : 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-01-27T23:38:55.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:54 smithi142 bash[20347]: cluster 2024-01-27T23:38:53.579427+0000 mgr.smithi099.hzjdah (mgr.14182) 510 : 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-01-27T23:38:56.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:55 smithi142 bash[20347]: cluster 2024-01-27T23:38:55.580728+0000 mgr.smithi099.hzjdah (mgr.14182) 511 : 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-01-27T23:38:56.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:55 smithi099 bash[16328]: cluster 2024-01-27T23:38:55.580728+0000 mgr.smithi099.hzjdah (mgr.14182) 511 : 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-01-27T23:38:57.463 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:38:57.463 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:58.083 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:59.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:58 smithi142 bash[20347]: audit 2024-01-27T23:38:57.453896+0000 mgr.smithi099.hzjdah (mgr.14182) 512 : audit [DBG] from='client.14824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:59.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:38:58 smithi142 bash[20347]: cluster 2024-01-27T23:38:57.582862+0000 mgr.smithi099.hzjdah (mgr.14182) 513 : 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-01-27T23:38:59.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:58 smithi099 bash[16328]: audit 2024-01-27T23:38:57.453896+0000 mgr.smithi099.hzjdah (mgr.14182) 512 : audit [DBG] from='client.14824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:59.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:38:58 smithi099 bash[16328]: cluster 2024-01-27T23:38:57.582862+0000 mgr.smithi099.hzjdah (mgr.14182) 513 : 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-01-27T23:38:59.084 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:00.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:00 smithi099 bash[16328]: cluster 2024-01-27T23:38:59.584709+0000 mgr.smithi099.hzjdah (mgr.14182) 514 : 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-01-27T23:39:01.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:00 smithi142 bash[20347]: cluster 2024-01-27T23:38:59.584709+0000 mgr.smithi099.hzjdah (mgr.14182) 514 : 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-01-27T23:39:02.373 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:02.374 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:02.955 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:03.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:02 smithi142 bash[20347]: cluster 2024-01-27T23:39:01.586340+0000 mgr.smithi099.hzjdah (mgr.14182) 515 : 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-01-27T23:39:03.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:02 smithi099 bash[16328]: cluster 2024-01-27T23:39:01.586340+0000 mgr.smithi099.hzjdah (mgr.14182) 515 : 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-01-27T23:39:03.957 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:04.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:03 smithi142 bash[20347]: audit 2024-01-27T23:39:02.363818+0000 mgr.smithi099.hzjdah (mgr.14182) 516 : audit [DBG] from='client.14828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:04.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:03 smithi099 bash[16328]: audit 2024-01-27T23:39:02.363818+0000 mgr.smithi099.hzjdah (mgr.14182) 516 : audit [DBG] from='client.14828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:05.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:04 smithi142 bash[20347]: cluster 2024-01-27T23:39:03.588047+0000 mgr.smithi099.hzjdah (mgr.14182) 517 : 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-01-27T23:39:05.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:04 smithi099 bash[16328]: cluster 2024-01-27T23:39:03.588047+0000 mgr.smithi099.hzjdah (mgr.14182) 517 : 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-01-27T23:39:07.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:06 smithi142 bash[20347]: cluster 2024-01-27T23:39:05.589366+0000 mgr.smithi099.hzjdah (mgr.14182) 518 : 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-01-27T23:39:07.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:06 smithi099 bash[16328]: cluster 2024-01-27T23:39:05.589366+0000 mgr.smithi099.hzjdah (mgr.14182) 518 : 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-01-27T23:39:07.173 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:07.174 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:07.786 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:08.787 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:09.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:08 smithi142 bash[20347]: audit 2024-01-27T23:39:07.168801+0000 mgr.smithi099.hzjdah (mgr.14182) 519 : audit [DBG] from='client.14832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:09.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:08 smithi142 bash[20347]: cluster 2024-01-27T23:39:07.591265+0000 mgr.smithi099.hzjdah (mgr.14182) 520 : 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-01-27T23:39:09.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:08 smithi099 bash[16328]: audit 2024-01-27T23:39:07.168801+0000 mgr.smithi099.hzjdah (mgr.14182) 519 : audit [DBG] from='client.14832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:09.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:08 smithi099 bash[16328]: cluster 2024-01-27T23:39:07.591265+0000 mgr.smithi099.hzjdah (mgr.14182) 520 : 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-01-27T23:39:11.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:10 smithi142 bash[20347]: cluster 2024-01-27T23:39:09.592859+0000 mgr.smithi099.hzjdah (mgr.14182) 521 : 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-01-27T23:39:11.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:10 smithi099 bash[16328]: cluster 2024-01-27T23:39:09.592859+0000 mgr.smithi099.hzjdah (mgr.14182) 521 : 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-01-27T23:39:12.124 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:12.124 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:12.753 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:13.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:12 smithi142 bash[20347]: cluster 2024-01-27T23:39:11.594398+0000 mgr.smithi099.hzjdah (mgr.14182) 522 : 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-01-27T23:39:13.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:12 smithi099 bash[16328]: cluster 2024-01-27T23:39:11.594398+0000 mgr.smithi099.hzjdah (mgr.14182) 522 : 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-01-27T23:39:13.754 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:14.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:13 smithi142 bash[20347]: audit 2024-01-27T23:39:12.121253+0000 mgr.smithi099.hzjdah (mgr.14182) 523 : audit [DBG] from='client.14836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:14.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:13 smithi099 bash[16328]: audit 2024-01-27T23:39:12.121253+0000 mgr.smithi099.hzjdah (mgr.14182) 523 : audit [DBG] from='client.14836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:15.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:14 smithi142 bash[20347]: cluster 2024-01-27T23:39:13.596056+0000 mgr.smithi099.hzjdah (mgr.14182) 524 : 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-01-27T23:39:15.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:14 smithi099 bash[16328]: cluster 2024-01-27T23:39:13.596056+0000 mgr.smithi099.hzjdah (mgr.14182) 524 : 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-01-27T23:39:16.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:16 smithi099 bash[16328]: cluster 2024-01-27T23:39:15.597527+0000 mgr.smithi099.hzjdah (mgr.14182) 525 : 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-01-27T23:39:16.996 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:16.996 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:17.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:16 smithi142 bash[20347]: cluster 2024-01-27T23:39:15.597527+0000 mgr.smithi099.hzjdah (mgr.14182) 525 : 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-01-27T23:39:17.667 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:18.669 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:19.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:18 smithi142 bash[20347]: audit 2024-01-27T23:39:16.986416+0000 mgr.smithi099.hzjdah (mgr.14182) 526 : audit [DBG] from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:19.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:18 smithi142 bash[20347]: cluster 2024-01-27T23:39:17.599469+0000 mgr.smithi099.hzjdah (mgr.14182) 527 : 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-01-27T23:39:19.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:18 smithi099 bash[16328]: audit 2024-01-27T23:39:16.986416+0000 mgr.smithi099.hzjdah (mgr.14182) 526 : audit [DBG] from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:19.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:18 smithi099 bash[16328]: cluster 2024-01-27T23:39:17.599469+0000 mgr.smithi099.hzjdah (mgr.14182) 527 : 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-01-27T23:39:21.162 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:20 smithi099 bash[16328]: cluster 2024-01-27T23:39:19.601208+0000 mgr.smithi099.hzjdah (mgr.14182) 528 : 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-01-27T23:39:21.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:20 smithi142 bash[20347]: cluster 2024-01-27T23:39:19.601208+0000 mgr.smithi099.hzjdah (mgr.14182) 528 : 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-01-27T23:39:22.030 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:22.030 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:22.618 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:23.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:22 smithi099 bash[16328]: cluster 2024-01-27T23:39:21.602435+0000 mgr.smithi099.hzjdah (mgr.14182) 529 : 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-01-27T23:39:23.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:22 smithi142 bash[20347]: cluster 2024-01-27T23:39:21.602435+0000 mgr.smithi099.hzjdah (mgr.14182) 529 : 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-01-27T23:39:23.619 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:24.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:23 smithi099 bash[16328]: audit 2024-01-27T23:39:22.019787+0000 mgr.smithi099.hzjdah (mgr.14182) 530 : audit [DBG] from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:24.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:23 smithi142 bash[20347]: audit 2024-01-27T23:39:22.019787+0000 mgr.smithi099.hzjdah (mgr.14182) 530 : audit [DBG] from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:24.958 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:24 smithi099 bash[16328]: cluster 2024-01-27T23:39:23.604202+0000 mgr.smithi099.hzjdah (mgr.14182) 531 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:25.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:24 smithi142 bash[20347]: cluster 2024-01-27T23:39:23.604202+0000 mgr.smithi099.hzjdah (mgr.14182) 531 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:26.616 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:26.616 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:27.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:26 smithi099 bash[16328]: cluster 2024-01-27T23:39:25.605576+0000 mgr.smithi099.hzjdah (mgr.14182) 532 : cluster [DBG] pgmap v399: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:27.181 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:27.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:26 smithi142 bash[20347]: cluster 2024-01-27T23:39:25.605576+0000 mgr.smithi099.hzjdah (mgr.14182) 532 : cluster [DBG] pgmap v399: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:28.182 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:28.195 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:27 smithi099 bash[16328]: audit 2024-01-27T23:39:26.613751+0000 mgr.smithi099.hzjdah (mgr.14182) 533 : audit [DBG] from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:28.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:27 smithi142 bash[20347]: audit 2024-01-27T23:39:26.613751+0000 mgr.smithi099.hzjdah (mgr.14182) 533 : audit [DBG] from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:29.232 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:28 smithi099 bash[16328]: cluster 2024-01-27T23:39:27.607455+0000 mgr.smithi099.hzjdah (mgr.14182) 534 : cluster [DBG] pgmap v400: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:29.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:28 smithi142 bash[20347]: cluster 2024-01-27T23:39:27.607455+0000 mgr.smithi099.hzjdah (mgr.14182) 534 : cluster [DBG] pgmap v400: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:31.272 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:31.272 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:31.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:30 smithi142 bash[20347]: cluster 2024-01-27T23:39:29.609074+0000 mgr.smithi099.hzjdah (mgr.14182) 535 : cluster [DBG] pgmap v401: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:31.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:30 smithi099 bash[16328]: cluster 2024-01-27T23:39:29.609074+0000 mgr.smithi099.hzjdah (mgr.14182) 535 : cluster [DBG] pgmap v401: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:31.865 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:32.866 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:33.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:32 smithi142 bash[20347]: audit 2024-01-27T23:39:31.266677+0000 mgr.smithi099.hzjdah (mgr.14182) 536 : audit [DBG] from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:33.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:32 smithi142 bash[20347]: cluster 2024-01-27T23:39:31.610715+0000 mgr.smithi099.hzjdah (mgr.14182) 537 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:33.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:32 smithi099 bash[16328]: audit 2024-01-27T23:39:31.266677+0000 mgr.smithi099.hzjdah (mgr.14182) 536 : audit [DBG] from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:33.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:32 smithi099 bash[16328]: cluster 2024-01-27T23:39:31.610715+0000 mgr.smithi099.hzjdah (mgr.14182) 537 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:34.235 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:33 smithi099 bash[16328]: audit 2024-01-27T23:39:33.565747+0000 mon.smithi099 (mon.0) 766 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:39:34.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:33 smithi142 bash[20347]: audit 2024-01-27T23:39:33.565747+0000 mon.smithi099 (mon.0) 766 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:39:35.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:34 smithi142 bash[20347]: cluster 2024-01-27T23:39:33.612526+0000 mgr.smithi099.hzjdah (mgr.14182) 538 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:35.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:34 smithi142 bash[20347]: audit 2024-01-27T23:39:33.903439+0000 mon.smithi099 (mon.0) 767 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:39:35.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:34 smithi142 bash[20347]: audit 2024-01-27T23:39:33.904795+0000 mon.smithi099 (mon.0) 768 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:39:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:34 smithi142 bash[20347]: audit 2024-01-27T23:39:33.912642+0000 mon.smithi099 (mon.0) 769 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:39:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:34 smithi142 bash[20347]: cluster 2024-01-27T23:39:33.913332+0000 mgr.smithi099.hzjdah (mgr.14182) 539 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:39:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:34 smithi142 bash[20347]: audit 2024-01-27T23:39:33.922666+0000 mon.smithi099 (mon.0) 770 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:39:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:34 smithi142 bash[20347]: audit 2024-01-27T23:39:33.938118+0000 mon.smithi099 (mon.0) 771 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:39:35.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:34 smithi099 bash[16328]: cluster 2024-01-27T23:39:33.612526+0000 mgr.smithi099.hzjdah (mgr.14182) 538 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:35.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:34 smithi099 bash[16328]: audit 2024-01-27T23:39:33.903439+0000 mon.smithi099 (mon.0) 767 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:39:35.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:34 smithi099 bash[16328]: audit 2024-01-27T23:39:33.904795+0000 mon.smithi099 (mon.0) 768 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:39:35.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:34 smithi099 bash[16328]: audit 2024-01-27T23:39:33.912642+0000 mon.smithi099 (mon.0) 769 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:39:35.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:34 smithi099 bash[16328]: cluster 2024-01-27T23:39:33.913332+0000 mgr.smithi099.hzjdah (mgr.14182) 539 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:39:35.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:34 smithi099 bash[16328]: audit 2024-01-27T23:39:33.922666+0000 mon.smithi099 (mon.0) 770 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:39:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:34 smithi099 bash[16328]: audit 2024-01-27T23:39:33.938118+0000 mon.smithi099 (mon.0) 771 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:39:36.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:35 smithi099 bash[16328]: cephadm 2024-01-27T23:39:33.942006+0000 mgr.smithi099.hzjdah (mgr.14182) 540 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.nmdigt on smithi142 2024-01-27T23:39:36.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:35 smithi099 bash[16328]: cluster 2024-01-27T23:39:34.910551+0000 mon.smithi099 (mon.0) 772 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:39:36.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:35 smithi099 bash[16328]: cluster 2024-01-27T23:39:34.910614+0000 mon.smithi099 (mon.0) 773 : cluster [INF] Cluster is now healthy 2024-01-27T23:39:36.150 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:36.150 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:24.685880Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.aqwpzu on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:36.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:35 smithi142 bash[20347]: cephadm 2024-01-27T23:39:33.942006+0000 mgr.smithi099.hzjdah (mgr.14182) 540 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.nmdigt on smithi142 2024-01-27T23:39:36.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:35 smithi142 bash[20347]: cluster 2024-01-27T23:39:34.910551+0000 mon.smithi099 (mon.0) 772 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:39:36.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:35 smithi142 bash[20347]: cluster 2024-01-27T23:39:34.910614+0000 mon.smithi099 (mon.0) 773 : cluster [INF] Cluster is now healthy 2024-01-27T23:39:36.814 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:37.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:36 smithi099 bash[16328]: cluster 2024-01-27T23:39:35.914515+0000 mgr.smithi099.hzjdah (mgr.14182) 541 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:39:37.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:36 smithi142 bash[20347]: cluster 2024-01-27T23:39:35.914515+0000 mgr.smithi099.hzjdah (mgr.14182) 541 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:39:37.815 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:38.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:37 smithi099 bash[16328]: audit 2024-01-27T23:39:36.147928+0000 mgr.smithi099.hzjdah (mgr.14182) 542 : audit [DBG] from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:38.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:37 smithi142 bash[20347]: audit 2024-01-27T23:39:36.147928+0000 mgr.smithi099.hzjdah (mgr.14182) 542 : audit [DBG] from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:39.151 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:38 smithi099 bash[16328]: cluster 2024-01-27T23:39:37.916198+0000 mgr.smithi099.hzjdah (mgr.14182) 543 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:39:39.151 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:38 smithi099 bash[16328]: audit 2024-01-27T23:39:37.976426+0000 mon.smithi099 (mon.0) 774 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.nmdigt"}]: dispatch 2024-01-27T23:39:39.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:38 smithi142 bash[20347]: cluster 2024-01-27T23:39:37.916198+0000 mgr.smithi099.hzjdah (mgr.14182) 543 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:39:39.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:38 smithi142 bash[20347]: audit 2024-01-27T23:39:37.976426+0000 mon.smithi099 (mon.0) 774 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.nmdigt"}]: dispatch 2024-01-27T23:39:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: cephadm 2024-01-27T23:39:37.975350+0000 mgr.smithi099.hzjdah (mgr.14182) 544 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.nmdigt ... 2024-01-27T23:39:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.nmdigt ... 2024-01-27T23:39:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: cephadm 2024-01-27T23:39:37.975838+0000 mgr.smithi099.hzjdah (mgr.14182) 545 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: cephadm 2024-01-27T23:39:37.977966+0000 mgr.smithi099.hzjdah (mgr.14182) 546 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.nmdigt ... 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:40.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:40.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:39 smithi142 bash[20347]: cephadm 2024-01-27T23:39:37.982736+0000 mgr.smithi099.hzjdah (mgr.14182) 547 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.fjhsou on smithi099 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: cephadm 2024-01-27T23:39:37.975350+0000 mgr.smithi099.hzjdah (mgr.14182) 544 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.nmdigt ... 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:40.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.nmdigt ... 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: cephadm 2024-01-27T23:39:37.975838+0000 mgr.smithi099.hzjdah (mgr.14182) 545 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: cephadm 2024-01-27T23:39:37.977966+0000 mgr.smithi099.hzjdah (mgr.14182) 546 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.nmdigt ... 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:40.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:40.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:39 smithi099 bash[16328]: cephadm 2024-01-27T23:39:37.982736+0000 mgr.smithi099.hzjdah (mgr.14182) 547 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.fjhsou on smithi099 2024-01-27T23:39:41.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:40 smithi099 bash[16328]: cluster 2024-01-27T23:39:39.917227+0000 mgr.smithi099.hzjdah (mgr.14182) 548 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:39:41.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:40 smithi099 bash[16328]: audit 2024-01-27T23:39:40.380847+0000 mon.smithi099 (mon.0) 775 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:39:41.183 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:41.183 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:29.487149Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qciedl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qciedl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qciedl\nDeploy daemon haproxy.nfs.foo.smithi142.qciedl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.554664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.idocsy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-idocsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.idocsy\nDeploy daemon haproxy.nfs.foo.smithi099.idocsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:38:33.558900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fkzvsw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:41.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:40 smithi142 bash[20347]: cluster 2024-01-27T23:39:39.917227+0000 mgr.smithi099.hzjdah (mgr.14182) 548 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:39:41.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:40 smithi142 bash[20347]: audit 2024-01-27T23:39:40.380847+0000 mon.smithi099 (mon.0) 775 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:39:41.880 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:42.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:41 smithi142 bash[20347]: audit 2024-01-27T23:39:41.173505+0000 mgr.smithi099.hzjdah (mgr.14182) 549 : audit [DBG] from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:42.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:41 smithi142 bash[20347]: cluster 2024-01-27T23:39:41.918606+0000 mgr.smithi099.hzjdah (mgr.14182) 550 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:39:42.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:41 smithi099 bash[16328]: audit 2024-01-27T23:39:41.173505+0000 mgr.smithi099.hzjdah (mgr.14182) 549 : audit [DBG] from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:42.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:41 smithi099 bash[16328]: cluster 2024-01-27T23:39:41.918606+0000 mgr.smithi099.hzjdah (mgr.14182) 550 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:39:42.881 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: cephadm 2024-01-27T23:39:41.971908+0000 mgr.smithi099.hzjdah (mgr.14182) 551 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.fjhsou ... 2024-01-27T23:39:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.fjhsou ... 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: cephadm 2024-01-27T23:39:41.972297+0000 mgr.smithi099.hzjdah (mgr.14182) 552 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: audit 2024-01-27T23:39:41.976776+0000 mon.smithi099 (mon.0) 776 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.fjhsou"}]: dispatch 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: cephadm 2024-01-27T23:39:41.978626+0000 mgr.smithi099.hzjdah (mgr.14182) 553 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:43.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.fjhsou ... 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: cephadm 2024-01-27T23:39:41.982289+0000 mgr.smithi099.hzjdah (mgr.14182) 554 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: cephadm 2024-01-27T23:39:41.985599+0000 mgr.smithi099.hzjdah (mgr.14182) 555 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:39:43.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:42 smithi142 bash[20347]: cluster 2024-01-27T23:39:41.986530+0000 mgr.smithi099.hzjdah (mgr.14182) 556 : cluster [DBG] pgmap v409: 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-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: cephadm 2024-01-27T23:39:41.971908+0000 mgr.smithi099.hzjdah (mgr.14182) 551 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.fjhsou ... 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.fjhsou ... 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: cephadm 2024-01-27T23:39:41.972297+0000 mgr.smithi099.hzjdah (mgr.14182) 552 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: audit 2024-01-27T23:39:41.976776+0000 mon.smithi099 (mon.0) 776 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.fjhsou"}]: dispatch 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: cephadm 2024-01-27T23:39:41.978626+0000 mgr.smithi099.hzjdah (mgr.14182) 553 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:39:43.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:39:43.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.fjhsou ... 2024-01-27T23:39:43.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:39:43.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:39:43.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:39:43.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:39:43.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: cephadm 2024-01-27T23:39:41.982289+0000 mgr.smithi099.hzjdah (mgr.14182) 554 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:39:43.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: cephadm 2024-01-27T23:39:41.985599+0000 mgr.smithi099.hzjdah (mgr.14182) 555 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:39:43.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:42 smithi099 bash[16328]: cluster 2024-01-27T23:39:41.986530+0000 mgr.smithi099.hzjdah (mgr.14182) 556 : cluster [DBG] pgmap v409: 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-01-27T23:39:44.287 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:43 smithi099 bash[16328]: cluster 2024-01-27T23:39:42.979738+0000 mon.smithi099 (mon.0) 777 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:39:44.287 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:43 smithi099 bash[16328]: audit 2024-01-27T23:39:43.354983+0000 mon.smithi099 (mon.0) 778 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:39:44.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:43 smithi142 bash[20347]: cluster 2024-01-27T23:39:42.979738+0000 mon.smithi099 (mon.0) 777 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:39:44.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:43 smithi142 bash[20347]: audit 2024-01-27T23:39:43.354983+0000 mon.smithi099 (mon.0) 778 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:39:45.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:45 smithi099 bash[16328]: cluster 2024-01-27T23:39:43.988314+0000 mgr.smithi099.hzjdah (mgr.14182) 557 : cluster [DBG] pgmap v410: 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-01-27T23:39:45.955 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:45.955 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:46.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:45 smithi142 bash[20347]: cluster 2024-01-27T23:39:43.988314+0000 mgr.smithi099.hzjdah (mgr.14182) 557 : cluster [DBG] pgmap v410: 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-01-27T23:39:46.600 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:47.601 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:48.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:47 smithi142 bash[20347]: audit 2024-01-27T23:39:45.952727+0000 mgr.smithi099.hzjdah (mgr.14182) 558 : audit [DBG] from='client.14864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:48.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:47 smithi142 bash[20347]: cluster 2024-01-27T23:39:45.989395+0000 mgr.smithi099.hzjdah (mgr.14182) 559 : cluster [DBG] pgmap v411: 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-01-27T23:39:48.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:47 smithi099 bash[16328]: audit 2024-01-27T23:39:45.952727+0000 mgr.smithi099.hzjdah (mgr.14182) 558 : audit [DBG] from='client.14864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:48.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:47 smithi099 bash[16328]: cluster 2024-01-27T23:39:45.989395+0000 mgr.smithi099.hzjdah (mgr.14182) 559 : cluster [DBG] pgmap v411: 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-01-27T23:39:50.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:49 smithi142 bash[20347]: cluster 2024-01-27T23:39:47.991227+0000 mgr.smithi099.hzjdah (mgr.14182) 560 : cluster [DBG] pgmap v412: 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-01-27T23:39:50.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:49 smithi099 bash[16328]: cluster 2024-01-27T23:39:47.991227+0000 mgr.smithi099.hzjdah (mgr.14182) 560 : cluster [DBG] pgmap v412: 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-01-27T23:39:50.826 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:50.826 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:51.471 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:52.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:51 smithi142 bash[20347]: cluster 2024-01-27T23:39:49.992646+0000 mgr.smithi099.hzjdah (mgr.14182) 561 : cluster [DBG] pgmap v413: 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-01-27T23:39:52.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:51 smithi142 bash[20347]: audit 2024-01-27T23:39:50.816205+0000 mgr.smithi099.hzjdah (mgr.14182) 562 : audit [DBG] from='client.14868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:52.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:51 smithi099 bash[16328]: cluster 2024-01-27T23:39:49.992646+0000 mgr.smithi099.hzjdah (mgr.14182) 561 : cluster [DBG] pgmap v413: 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-01-27T23:39:52.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:51 smithi099 bash[16328]: audit 2024-01-27T23:39:50.816205+0000 mgr.smithi099.hzjdah (mgr.14182) 562 : audit [DBG] from='client.14868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:52.473 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:53.891 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:53 smithi099 bash[16328]: cluster 2024-01-27T23:39:51.994403+0000 mgr.smithi099.hzjdah (mgr.14182) 563 : cluster [DBG] pgmap v414: 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-01-27T23:39:54.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:53 smithi142 bash[20347]: cluster 2024-01-27T23:39:51.994403+0000 mgr.smithi099.hzjdah (mgr.14182) 563 : cluster [DBG] pgmap v414: 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-01-27T23:39:55.611 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:39:55.612 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:56.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:55 smithi142 bash[20347]: cluster 2024-01-27T23:39:53.995670+0000 mgr.smithi099.hzjdah (mgr.14182) 564 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:56.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:55 smithi142 bash[20347]: audit 2024-01-27T23:39:55.380658+0000 mon.smithi099 (mon.0) 779 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:39:56.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:55 smithi099 bash[16328]: cluster 2024-01-27T23:39:53.995670+0000 mgr.smithi099.hzjdah (mgr.14182) 564 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:56.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:55 smithi099 bash[16328]: audit 2024-01-27T23:39:55.380658+0000 mon.smithi099 (mon.0) 779 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:39:56.251 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:57.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:56 smithi142 bash[20347]: audit 2024-01-27T23:39:55.602147+0000 mgr.smithi099.hzjdah (mgr.14182) 565 : audit [DBG] from='client.14872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:57.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:56 smithi099 bash[16328]: audit 2024-01-27T23:39:55.602147+0000 mgr.smithi099.hzjdah (mgr.14182) 565 : audit [DBG] from='client.14872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:57.252 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:58.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:57 smithi142 bash[20347]: cluster 2024-01-27T23:39:55.997148+0000 mgr.smithi099.hzjdah (mgr.14182) 566 : cluster [DBG] pgmap v416: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:58.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:57 smithi099 bash[16328]: cluster 2024-01-27T23:39:55.997148+0000 mgr.smithi099.hzjdah (mgr.14182) 566 : cluster [DBG] pgmap v416: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:00.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:39:59 smithi099 bash[16328]: cluster 2024-01-27T23:39:57.999175+0000 mgr.smithi099.hzjdah (mgr.14182) 567 : 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-01-27T23:40:00.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:39:59 smithi142 bash[20347]: cluster 2024-01-27T23:39:57.999175+0000 mgr.smithi099.hzjdah (mgr.14182) 567 : 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-01-27T23:40:00.338 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:00.338 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:00.911 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:01.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000192+0000 mon.smithi099 (mon.0) 780 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2024-01-27T23:40:01.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000246+0000 mon.smithi099 (mon.0) 781 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2024-01-27T23:40:01.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000295+0000 mon.smithi099 (mon.0) 782 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:40:01.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000324+0000 mon.smithi099 (mon.0) 783 : cluster [WRN] /usr/bin/docker: stdout 2024-01-27T23:40:01.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000355+0000 mon.smithi099 (mon.0) 784 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:40:01.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000380+0000 mon.smithi099 (mon.0) 785 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:40:01.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000414+0000 mon.smithi099 (mon.0) 786 : cluster [WRN] /usr/bin/docker: stdout 2024-01-27T23:40:01.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000442+0000 mon.smithi099 (mon.0) 787 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:40:01.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000469+0000 mon.smithi099 (mon.0) 788 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi142.nmdigt ... 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000502+0000 mon.smithi099 (mon.0) 789 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000534+0000 mon.smithi099 (mon.0) 790 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000567+0000 mon.smithi099 (mon.0) 791 : 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-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000596+0000 mon.smithi099 (mon.0) 792 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000623+0000 mon.smithi099 (mon.0) 793 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000663+0000 mon.smithi099 (mon.0) 794 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000689+0000 mon.smithi099 (mon.0) 795 : cluster [WRN] /usr/bin/docker: stdout 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000718+0000 mon.smithi099 (mon.0) 796 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000755+0000 mon.smithi099 (mon.0) 797 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000781+0000 mon.smithi099 (mon.0) 798 : cluster [WRN] /usr/bin/docker: stdout 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000813+0000 mon.smithi099 (mon.0) 799 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000852+0000 mon.smithi099 (mon.0) 800 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi099.fjhsou ... 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000902+0000 mon.smithi099 (mon.0) 801 : 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=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:01.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000957+0000 mon.smithi099 (mon.0) 802 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:01.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.001002+0000 mon.smithi099 (mon.0) 803 : 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-01-27T23:40:01.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.001050+0000 mon.smithi099 (mon.0) 804 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-01-27T23:40:01.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.001094+0000 mon.smithi099 (mon.0) 805 : 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=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:01.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.001112+0000 mon.smithi099 (mon.0) 806 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:40:01.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.001136+0000 mon.smithi099 (mon.0) 807 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:40:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000192+0000 mon.smithi099 (mon.0) 780 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2024-01-27T23:40:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000246+0000 mon.smithi099 (mon.0) 781 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2024-01-27T23:40:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000295+0000 mon.smithi099 (mon.0) 782 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:40:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000324+0000 mon.smithi099 (mon.0) 783 : cluster [WRN] /usr/bin/docker: stdout 2024-01-27T23:40:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000355+0000 mon.smithi099 (mon.0) 784 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt 2024-01-27T23:40:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000380+0000 mon.smithi099 (mon.0) 785 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:40:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000414+0000 mon.smithi099 (mon.0) 786 : cluster [WRN] /usr/bin/docker: stdout 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000442+0000 mon.smithi099 (mon.0) 787 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000469+0000 mon.smithi099 (mon.0) 788 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi142.nmdigt ... 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000502+0000 mon.smithi099 (mon.0) 789 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000534+0000 mon.smithi099 (mon.0) 790 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000567+0000 mon.smithi099 (mon.0) 791 : 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-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000596+0000 mon.smithi099 (mon.0) 792 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000623+0000 mon.smithi099 (mon.0) 793 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000663+0000 mon.smithi099 (mon.0) 794 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000689+0000 mon.smithi099 (mon.0) 795 : cluster [WRN] /usr/bin/docker: stdout 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000718+0000 mon.smithi099 (mon.0) 796 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000755+0000 mon.smithi099 (mon.0) 797 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:40:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000781+0000 mon.smithi099 (mon.0) 798 : cluster [WRN] /usr/bin/docker: stdout 2024-01-27T23:40:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000813+0000 mon.smithi099 (mon.0) 799 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou 2024-01-27T23:40:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000852+0000 mon.smithi099 (mon.0) 800 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi099.fjhsou ... 2024-01-27T23:40:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000902+0000 mon.smithi099 (mon.0) 801 : 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=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000957+0000 mon.smithi099 (mon.0) 802 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.001002+0000 mon.smithi099 (mon.0) 803 : 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-01-27T23:40:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.001050+0000 mon.smithi099 (mon.0) 804 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-01-27T23:40:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.001094+0000 mon.smithi099 (mon.0) 805 : 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=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.001112+0000 mon.smithi099 (mon.0) 806 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:40:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.001136+0000 mon.smithi099 (mon.0) 807 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:40:01.912 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:02.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:01 smithi099 bash[16328]: cluster 2024-01-27T23:40:00.000779+0000 mgr.smithi099.hzjdah (mgr.14182) 568 : 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-01-27T23:40:02.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:01 smithi099 bash[16328]: audit 2024-01-27T23:40:00.331032+0000 mgr.smithi099.hzjdah (mgr.14182) 569 : audit [DBG] from='client.14876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:02.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:01 smithi142 bash[20347]: cluster 2024-01-27T23:40:00.000779+0000 mgr.smithi099.hzjdah (mgr.14182) 568 : 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-01-27T23:40:02.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:01 smithi142 bash[20347]: audit 2024-01-27T23:40:00.331032+0000 mgr.smithi099.hzjdah (mgr.14182) 569 : audit [DBG] from='client.14876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:04.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:03 smithi099 bash[16328]: cluster 2024-01-27T23:40:02.002654+0000 mgr.smithi099.hzjdah (mgr.14182) 570 : 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-01-27T23:40:04.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:03 smithi142 bash[20347]: cluster 2024-01-27T23:40:02.002654+0000 mgr.smithi099.hzjdah (mgr.14182) 570 : 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-01-27T23:40:05.223 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:05.223 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:05.867 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:06.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:05 smithi099 bash[16328]: cluster 2024-01-27T23:40:04.004140+0000 mgr.smithi099.hzjdah (mgr.14182) 571 : cluster [DBG] pgmap v420: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:06.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:05 smithi142 bash[20347]: cluster 2024-01-27T23:40:04.004140+0000 mgr.smithi099.hzjdah (mgr.14182) 571 : cluster [DBG] pgmap v420: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:06.868 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:07.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:06 smithi142 bash[20347]: audit 2024-01-27T23:40:05.215697+0000 mgr.smithi099.hzjdah (mgr.14182) 572 : audit [DBG] from='client.14880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:07.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:06 smithi099 bash[16328]: audit 2024-01-27T23:40:05.215697+0000 mgr.smithi099.hzjdah (mgr.14182) 572 : audit [DBG] from='client.14880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:08.173 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:07 smithi099 bash[16328]: cluster 2024-01-27T23:40:06.005695+0000 mgr.smithi099.hzjdah (mgr.14182) 573 : cluster [DBG] pgmap v421: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:08.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:07 smithi142 bash[20347]: cluster 2024-01-27T23:40:06.005695+0000 mgr.smithi099.hzjdah (mgr.14182) 573 : cluster [DBG] pgmap v421: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:09.924 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:09.924 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:10.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:09 smithi142 bash[20347]: cluster 2024-01-27T23:40:08.007471+0000 mgr.smithi099.hzjdah (mgr.14182) 574 : 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-01-27T23:40:10.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:09 smithi099 bash[16328]: cluster 2024-01-27T23:40:08.007471+0000 mgr.smithi099.hzjdah (mgr.14182) 574 : 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-01-27T23:40:10.526 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:11.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:10 smithi142 bash[20347]: audit 2024-01-27T23:40:09.915429+0000 mgr.smithi099.hzjdah (mgr.14182) 575 : audit [DBG] from='client.14884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:11.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:10 smithi099 bash[16328]: audit 2024-01-27T23:40:09.915429+0000 mgr.smithi099.hzjdah (mgr.14182) 575 : audit [DBG] from='client.14884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:11.527 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:12.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:11 smithi142 bash[20347]: cluster 2024-01-27T23:40:10.008302+0000 mgr.smithi099.hzjdah (mgr.14182) 576 : 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-01-27T23:40:12.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:11 smithi099 bash[16328]: cluster 2024-01-27T23:40:10.008302+0000 mgr.smithi099.hzjdah (mgr.14182) 576 : 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-01-27T23:40:14.292 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:13 smithi099 bash[16328]: cluster 2024-01-27T23:40:12.010020+0000 mgr.smithi099.hzjdah (mgr.14182) 577 : 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-01-27T23:40:14.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:13 smithi142 bash[20347]: cluster 2024-01-27T23:40:12.010020+0000 mgr.smithi099.hzjdah (mgr.14182) 577 : 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-01-27T23:40:14.719 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:14.719 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:15.363 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:16.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:15 smithi142 bash[20347]: cluster 2024-01-27T23:40:14.011741+0000 mgr.smithi099.hzjdah (mgr.14182) 578 : cluster [DBG] pgmap v425: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:16.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:15 smithi142 bash[20347]: audit 2024-01-27T23:40:14.716222+0000 mgr.smithi099.hzjdah (mgr.14182) 579 : audit [DBG] from='client.14888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:16.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:15 smithi099 bash[16328]: cluster 2024-01-27T23:40:14.011741+0000 mgr.smithi099.hzjdah (mgr.14182) 578 : cluster [DBG] pgmap v425: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:16.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:15 smithi099 bash[16328]: audit 2024-01-27T23:40:14.716222+0000 mgr.smithi099.hzjdah (mgr.14182) 579 : audit [DBG] from='client.14888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:16.365 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:18.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:17 smithi099 bash[16328]: cluster 2024-01-27T23:40:16.013221+0000 mgr.smithi099.hzjdah (mgr.14182) 580 : cluster [DBG] pgmap v426: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:18.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:17 smithi142 bash[20347]: cluster 2024-01-27T23:40:16.013221+0000 mgr.smithi099.hzjdah (mgr.14182) 580 : cluster [DBG] pgmap v426: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:19.479 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:19.480 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:20.105 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:20.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:19 smithi142 bash[20347]: cluster 2024-01-27T23:40:18.015143+0000 mgr.smithi099.hzjdah (mgr.14182) 581 : 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-01-27T23:40:20.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:19 smithi099 bash[16328]: cluster 2024-01-27T23:40:18.015143+0000 mgr.smithi099.hzjdah (mgr.14182) 581 : 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-01-27T23:40:21.106 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:21.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:20 smithi142 bash[20347]: audit 2024-01-27T23:40:19.469009+0000 mgr.smithi099.hzjdah (mgr.14182) 582 : audit [DBG] from='client.14892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:21.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:20 smithi099 bash[16328]: audit 2024-01-27T23:40:19.469009+0000 mgr.smithi099.hzjdah (mgr.14182) 582 : audit [DBG] from='client.14892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:22.211 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:21 smithi099 bash[16328]: cluster 2024-01-27T23:40:20.016590+0000 mgr.smithi099.hzjdah (mgr.14182) 583 : 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-01-27T23:40:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:21 smithi142 bash[20347]: cluster 2024-01-27T23:40:20.016590+0000 mgr.smithi099.hzjdah (mgr.14182) 583 : 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-01-27T23:40:24.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:23 smithi099 bash[16328]: cluster 2024-01-27T23:40:22.020526+0000 mgr.smithi099.hzjdah (mgr.14182) 584 : 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-01-27T23:40:24.221 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:24.221 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:24.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:23 smithi142 bash[20347]: cluster 2024-01-27T23:40:22.020526+0000 mgr.smithi099.hzjdah (mgr.14182) 584 : 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-01-27T23:40:24.863 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:25.864 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:26.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:25 smithi142 bash[20347]: cluster 2024-01-27T23:40:24.021898+0000 mgr.smithi099.hzjdah (mgr.14182) 585 : cluster [DBG] pgmap v430: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:26.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:25 smithi142 bash[20347]: audit 2024-01-27T23:40:24.212879+0000 mgr.smithi099.hzjdah (mgr.14182) 586 : audit [DBG] from='client.14896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:26.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:25 smithi099 bash[16328]: cluster 2024-01-27T23:40:24.021898+0000 mgr.smithi099.hzjdah (mgr.14182) 585 : cluster [DBG] pgmap v430: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:26.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:25 smithi099 bash[16328]: audit 2024-01-27T23:40:24.212879+0000 mgr.smithi099.hzjdah (mgr.14182) 586 : audit [DBG] from='client.14896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:28.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:27 smithi142 bash[20347]: cluster 2024-01-27T23:40:26.023398+0000 mgr.smithi099.hzjdah (mgr.14182) 587 : cluster [DBG] pgmap v431: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:28.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:27 smithi099 bash[16328]: cluster 2024-01-27T23:40:26.023398+0000 mgr.smithi099.hzjdah (mgr.14182) 587 : cluster [DBG] pgmap v431: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:29.057 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:29.057 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:29.655 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:30.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:29 smithi142 bash[20347]: cluster 2024-01-27T23:40:28.025374+0000 mgr.smithi099.hzjdah (mgr.14182) 588 : 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-01-27T23:40:30.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:29 smithi099 bash[16328]: cluster 2024-01-27T23:40:28.025374+0000 mgr.smithi099.hzjdah (mgr.14182) 588 : 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-01-27T23:40:30.656 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:31.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:30 smithi142 bash[20347]: audit 2024-01-27T23:40:29.046689+0000 mgr.smithi099.hzjdah (mgr.14182) 589 : audit [DBG] from='client.14900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:31.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:30 smithi099 bash[16328]: audit 2024-01-27T23:40:29.046689+0000 mgr.smithi099.hzjdah (mgr.14182) 589 : audit [DBG] from='client.14900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:32.128 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:31 smithi099 bash[16328]: cluster 2024-01-27T23:40:30.026834+0000 mgr.smithi099.hzjdah (mgr.14182) 590 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:32.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:31 smithi142 bash[20347]: cluster 2024-01-27T23:40:30.026834+0000 mgr.smithi099.hzjdah (mgr.14182) 590 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:33.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:32 smithi142 bash[20347]: cluster 2024-01-27T23:40:32.029146+0000 mgr.smithi099.hzjdah (mgr.14182) 591 : cluster [DBG] pgmap v434: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:33.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:32 smithi099 bash[16328]: cluster 2024-01-27T23:40:32.029146+0000 mgr.smithi099.hzjdah (mgr.14182) 591 : cluster [DBG] pgmap v434: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:33.940 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:33.941 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:34.522 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:35.523 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:35.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:35 smithi099 bash[16328]: audit 2024-01-27T23:40:33.937841+0000 mgr.smithi099.hzjdah (mgr.14182) 592 : audit [DBG] from='client.14904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:35.831 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:35 smithi099 bash[16328]: cluster 2024-01-27T23:40:34.030510+0000 mgr.smithi099.hzjdah (mgr.14182) 593 : cluster [DBG] pgmap v435: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:36.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:35 smithi142 bash[20347]: audit 2024-01-27T23:40:33.937841+0000 mgr.smithi099.hzjdah (mgr.14182) 592 : audit [DBG] from='client.14904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:36.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:35 smithi142 bash[20347]: cluster 2024-01-27T23:40:34.030510+0000 mgr.smithi099.hzjdah (mgr.14182) 593 : cluster [DBG] pgmap v435: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:38.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:37 smithi142 bash[20347]: cluster 2024-01-27T23:40:36.032002+0000 mgr.smithi099.hzjdah (mgr.14182) 594 : cluster [DBG] pgmap v436: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:38.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:37 smithi099 bash[16328]: cluster 2024-01-27T23:40:36.032002+0000 mgr.smithi099.hzjdah (mgr.14182) 594 : cluster [DBG] pgmap v436: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:38.857 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:38.857 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:39.499 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:40.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:39 smithi142 bash[20347]: cluster 2024-01-27T23:40:38.034070+0000 mgr.smithi099.hzjdah (mgr.14182) 595 : cluster [DBG] pgmap v437: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:40.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:39 smithi142 bash[20347]: audit 2024-01-27T23:40:38.852857+0000 mgr.smithi099.hzjdah (mgr.14182) 596 : audit [DBG] from='client.14908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:40.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:39 smithi099 bash[16328]: cluster 2024-01-27T23:40:38.034070+0000 mgr.smithi099.hzjdah (mgr.14182) 595 : cluster [DBG] pgmap v437: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:40.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:39 smithi099 bash[16328]: audit 2024-01-27T23:40:38.852857+0000 mgr.smithi099.hzjdah (mgr.14182) 596 : audit [DBG] from='client.14908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:40.501 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:41.802 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:41 smithi099 bash[16328]: cluster 2024-01-27T23:40:40.035534+0000 mgr.smithi099.hzjdah (mgr.14182) 597 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:42.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:41 smithi142 bash[20347]: cluster 2024-01-27T23:40:40.035534+0000 mgr.smithi099.hzjdah (mgr.14182) 597 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:41.989229+0000 mon.smithi099 (mon.0) 808 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:40:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.280846+0000 mon.smithi099 (mon.0) 809 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.282307+0000 mon.smithi099 (mon.0) 810 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.283702+0000 mon.smithi099 (mon.0) 811 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.285099+0000 mon.smithi099 (mon.0) 812 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.291324+0000 mon.smithi099 (mon.0) 813 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:40:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.309384+0000 mon.smithi099 (mon.0) 814 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.310885+0000 mon.smithi099 (mon.0) 815 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.312169+0000 mon.smithi099 (mon.0) 816 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.313445+0000 mon.smithi099 (mon.0) 817 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.320341+0000 mon.smithi099 (mon.0) 818 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:40:43.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.321889+0000 mon.smithi099 (mon.0) 819 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:40:43.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.322995+0000 mon.smithi099 (mon.0) 820 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:40:43.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.330828+0000 mon.smithi099 (mon.0) 821 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:40:43.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.339537+0000 mon.smithi099 (mon.0) 822 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:40:43.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:42 smithi142 bash[20347]: audit 2024-01-27T23:40:42.352219+0000 mon.smithi099 (mon.0) 823 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:41.989229+0000 mon.smithi099 (mon.0) 808 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.280846+0000 mon.smithi099 (mon.0) 809 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.282307+0000 mon.smithi099 (mon.0) 810 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.283702+0000 mon.smithi099 (mon.0) 811 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.285099+0000 mon.smithi099 (mon.0) 812 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.291324+0000 mon.smithi099 (mon.0) 813 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.309384+0000 mon.smithi099 (mon.0) 814 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.310885+0000 mon.smithi099 (mon.0) 815 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.312169+0000 mon.smithi099 (mon.0) 816 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.313445+0000 mon.smithi099 (mon.0) 817 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.320341+0000 mon.smithi099 (mon.0) 818 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.321889+0000 mon.smithi099 (mon.0) 819 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:40:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.322995+0000 mon.smithi099 (mon.0) 820 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:40:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.330828+0000 mon.smithi099 (mon.0) 821 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:40:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.339537+0000 mon.smithi099 (mon.0) 822 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:40:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:42 smithi099 bash[16328]: audit 2024-01-27T23:40:42.352219+0000 mon.smithi099 (mon.0) 823 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:40:43.619 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:43.619 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:38:33.562216Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.kmxvxd on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:44.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:43 smithi142 bash[20347]: cluster 2024-01-27T23:40:42.037222+0000 mgr.smithi099.hzjdah (mgr.14182) 598 : 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-01-27T23:40:44.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:43 smithi142 bash[20347]: cephadm 2024-01-27T23:40:42.286064+0000 mgr.smithi099.hzjdah (mgr.14182) 599 : cephadm [INF] Adjusting osd_memory_target on smithi099 to 3017M 2024-01-27T23:40:44.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:43 smithi142 bash[20347]: cephadm 2024-01-27T23:40:42.314486+0000 mgr.smithi099.hzjdah (mgr.14182) 600 : cephadm [INF] Adjusting osd_memory_target on smithi142 to 3529M 2024-01-27T23:40:44.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:43 smithi142 bash[20347]: cluster 2024-01-27T23:40:42.331647+0000 mgr.smithi099.hzjdah (mgr.14182) 601 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:40:44.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:43 smithi142 bash[20347]: cephadm 2024-01-27T23:40:42.355642+0000 mgr.smithi099.hzjdah (mgr.14182) 602 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.yrnjzj on smithi142 2024-01-27T23:40:44.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:43 smithi142 bash[20347]: cluster 2024-01-27T23:40:42.784759+0000 mon.smithi099 (mon.0) 824 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:40:44.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:43 smithi142 bash[20347]: cluster 2024-01-27T23:40:42.784834+0000 mon.smithi099 (mon.0) 825 : cluster [INF] Cluster is now healthy 2024-01-27T23:40:44.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:43 smithi099 bash[16328]: cluster 2024-01-27T23:40:42.037222+0000 mgr.smithi099.hzjdah (mgr.14182) 598 : 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-01-27T23:40:44.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:43 smithi099 bash[16328]: cephadm 2024-01-27T23:40:42.286064+0000 mgr.smithi099.hzjdah (mgr.14182) 599 : cephadm [INF] Adjusting osd_memory_target on smithi099 to 3017M 2024-01-27T23:40:44.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:43 smithi099 bash[16328]: cephadm 2024-01-27T23:40:42.314486+0000 mgr.smithi099.hzjdah (mgr.14182) 600 : cephadm [INF] Adjusting osd_memory_target on smithi142 to 3529M 2024-01-27T23:40:44.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:43 smithi099 bash[16328]: cluster 2024-01-27T23:40:42.331647+0000 mgr.smithi099.hzjdah (mgr.14182) 601 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:40:44.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:43 smithi099 bash[16328]: cephadm 2024-01-27T23:40:42.355642+0000 mgr.smithi099.hzjdah (mgr.14182) 602 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.yrnjzj on smithi142 2024-01-27T23:40:44.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:43 smithi099 bash[16328]: cluster 2024-01-27T23:40:42.784759+0000 mon.smithi099 (mon.0) 824 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:40:44.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:43 smithi099 bash[16328]: cluster 2024-01-27T23:40:42.784834+0000 mon.smithi099 (mon.0) 825 : cluster [INF] Cluster is now healthy 2024-01-27T23:40:44.285 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:45.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:44 smithi099 bash[16328]: audit 2024-01-27T23:40:43.616840+0000 mgr.smithi099.hzjdah (mgr.14182) 603 : audit [DBG] from='client.14912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:45.286 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:45.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:44 smithi142 bash[20347]: audit 2024-01-27T23:40:43.616840+0000 mgr.smithi099.hzjdah (mgr.14182) 603 : audit [DBG] from='client.14912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:46.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:45 smithi142 bash[20347]: cluster 2024-01-27T23:40:44.332984+0000 mgr.smithi099.hzjdah (mgr.14182) 604 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:40:46.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:45 smithi099 bash[16328]: cluster 2024-01-27T23:40:44.332984+0000 mgr.smithi099.hzjdah (mgr.14182) 604 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:40:47.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:46 smithi099 bash[16328]: audit 2024-01-27T23:40:46.133320+0000 mon.smithi099 (mon.0) 826 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.yrnjzj"}]: dispatch 2024-01-27T23:40:47.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:46 smithi142 bash[20347]: audit 2024-01-27T23:40:46.133320+0000 mon.smithi099 (mon.0) 826 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.yrnjzj"}]: dispatch 2024-01-27T23:40:48.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: cephadm 2024-01-27T23:40:46.132405+0000 mgr.smithi099.hzjdah (mgr.14182) 605 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:48.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:48.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.yrnjzj ... 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.yrnjzj ... 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: cephadm 2024-01-27T23:40:46.132635+0000 mgr.smithi099.hzjdah (mgr.14182) 606 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: cephadm 2024-01-27T23:40:46.134820+0000 mgr.smithi099.hzjdah (mgr.14182) 607 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:48.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.yrnjzj ... 2024-01-27T23:40:48.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:48.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:48.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:48.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: cephadm 2024-01-27T23:40:46.138492+0000 mgr.smithi099.hzjdah (mgr.14182) 608 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.fkzyib on smithi099 2024-01-27T23:40:48.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:47 smithi099 bash[16328]: cluster 2024-01-27T23:40:46.333730+0000 mgr.smithi099.hzjdah (mgr.14182) 609 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:40:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: cephadm 2024-01-27T23:40:46.132405+0000 mgr.smithi099.hzjdah (mgr.14182) 605 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.yrnjzj ... 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:48.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.yrnjzj ... 2024-01-27T23:40:48.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:48.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:48.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:48.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: cephadm 2024-01-27T23:40:46.132635+0000 mgr.smithi099.hzjdah (mgr.14182) 606 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: cephadm 2024-01-27T23:40:46.134820+0000 mgr.smithi099.hzjdah (mgr.14182) 607 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.yrnjzj ... 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: cephadm 2024-01-27T23:40:46.138492+0000 mgr.smithi099.hzjdah (mgr.14182) 608 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.fkzyib on smithi099 2024-01-27T23:40:48.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:47 smithi142 bash[20347]: cluster 2024-01-27T23:40:46.333730+0000 mgr.smithi099.hzjdah (mgr.14182) 609 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:40:48.543 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:48.543 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:37.977682Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nmdigt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nmdigt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nmdigt\nDeploy daemon haproxy.nfs.foo.smithi142.nmdigt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.978422Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fjhsou on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fjhsou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fjhsou\nDeploy daemon haproxy.nfs.foo.smithi099.fjhsou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:39:41.982095Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.jzercy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:49.224 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:50.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:49 smithi099 bash[16328]: cluster 2024-01-27T23:40:48.334897+0000 mgr.smithi099.hzjdah (mgr.14182) 610 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:40:50.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:49 smithi099 bash[16328]: audit 2024-01-27T23:40:48.540521+0000 mgr.smithi099.hzjdah (mgr.14182) 611 : audit [DBG] from='client.14916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:50.225 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:50.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:49 smithi142 bash[20347]: cluster 2024-01-27T23:40:48.334897+0000 mgr.smithi099.hzjdah (mgr.14182) 610 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:40:50.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:49 smithi142 bash[20347]: audit 2024-01-27T23:40:48.540521+0000 mgr.smithi099.hzjdah (mgr.14182) 611 : audit [DBG] from='client.14916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: cephadm 2024-01-27T23:40:49.924153+0000 mgr.smithi099.hzjdah (mgr.14182) 612 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.fkzyib ... 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:40:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.fkzyib ... 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: cephadm 2024-01-27T23:40:49.924415+0000 mgr.smithi099.hzjdah (mgr.14182) 613 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: audit 2024-01-27T23:40:49.924834+0000 mon.smithi099 (mon.0) 827 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.fkzyib"}]: dispatch 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: cephadm 2024-01-27T23:40:49.925999+0000 mgr.smithi099.hzjdah (mgr.14182) 614 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.fkzyib ... 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: cephadm 2024-01-27T23:40:49.927787+0000 mgr.smithi099.hzjdah (mgr.14182) 615 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:40:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: cephadm 2024-01-27T23:40:49.929455+0000 mgr.smithi099.hzjdah (mgr.14182) 616 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:40:51.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:50 smithi142 bash[20347]: cluster 2024-01-27T23:40:49.931090+0000 mgr.smithi099.hzjdah (mgr.14182) 617 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:40:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: cephadm 2024-01-27T23:40:49.924153+0000 mgr.smithi099.hzjdah (mgr.14182) 612 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.fkzyib ... 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.fkzyib ... 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: cephadm 2024-01-27T23:40:49.924415+0000 mgr.smithi099.hzjdah (mgr.14182) 613 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: audit 2024-01-27T23:40:49.924834+0000 mon.smithi099 (mon.0) 827 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.fkzyib"}]: dispatch 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: cephadm 2024-01-27T23:40:49.925999+0000 mgr.smithi099.hzjdah (mgr.14182) 614 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:40:51.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib 2024-01-27T23:40:51.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.fkzyib ... 2024-01-27T23:40:51.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:40:51.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:40:51.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:40:51.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:51.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: cephadm 2024-01-27T23:40:49.927787+0000 mgr.smithi099.hzjdah (mgr.14182) 615 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:40:51.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: cephadm 2024-01-27T23:40:49.929455+0000 mgr.smithi099.hzjdah (mgr.14182) 616 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:40:51.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:50 smithi099 bash[16328]: cluster 2024-01-27T23:40:49.931090+0000 mgr.smithi099.hzjdah (mgr.14182) 617 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:40:52.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:51 smithi099 bash[16328]: cluster 2024-01-27T23:40:50.832861+0000 mon.smithi099 (mon.0) 828 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:40:52.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:51 smithi142 bash[20347]: cluster 2024-01-27T23:40:50.832861+0000 mon.smithi099 (mon.0) 828 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:40:53.171 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:52 smithi099 bash[16328]: cluster 2024-01-27T23:40:51.932820+0000 mgr.smithi099.hzjdah (mgr.14182) 618 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:40:53.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:52 smithi142 bash[20347]: cluster 2024-01-27T23:40:51.932820+0000 mgr.smithi099.hzjdah (mgr.14182) 618 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:40:53.533 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:53.533 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:54.191 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:54.581 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:54 smithi099 bash[16328]: audit 2024-01-27T23:40:53.416867+0000 mon.smithi099 (mon.0) 829 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:40:54.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:54 smithi099 bash[16328]: audit 2024-01-27T23:40:53.522728+0000 mgr.smithi099.hzjdah (mgr.14182) 619 : audit [DBG] from='client.14920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:54.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:54 smithi099 bash[16328]: cluster 2024-01-27T23:40:53.934462+0000 mgr.smithi099.hzjdah (mgr.14182) 620 : cluster [DBG] pgmap v446: 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-01-27T23:40:54.803 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:54 smithi142 bash[20347]: audit 2024-01-27T23:40:53.416867+0000 mon.smithi099 (mon.0) 829 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:40:54.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:54 smithi142 bash[20347]: audit 2024-01-27T23:40:53.522728+0000 mgr.smithi099.hzjdah (mgr.14182) 619 : audit [DBG] from='client.14920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:54.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:54 smithi142 bash[20347]: cluster 2024-01-27T23:40:53.934462+0000 mgr.smithi099.hzjdah (mgr.14182) 620 : cluster [DBG] pgmap v446: 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-01-27T23:40:55.193 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:56.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:55 smithi142 bash[20347]: cluster 2024-01-27T23:40:55.935912+0000 mgr.smithi099.hzjdah (mgr.14182) 621 : cluster [DBG] pgmap v447: 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-01-27T23:40:56.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:55 smithi099 bash[16328]: cluster 2024-01-27T23:40:55.935912+0000 mgr.smithi099.hzjdah (mgr.14182) 621 : cluster [DBG] pgmap v447: 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-01-27T23:40:58.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:58 smithi142 bash[20347]: cluster 2024-01-27T23:40:57.937896+0000 mgr.smithi099.hzjdah (mgr.14182) 622 : cluster [DBG] pgmap v448: 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-01-27T23:40:58.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:58 smithi099 bash[16328]: cluster 2024-01-27T23:40:57.937896+0000 mgr.smithi099.hzjdah (mgr.14182) 622 : cluster [DBG] pgmap v448: 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-01-27T23:40:58.341 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:40:58.341 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:59.002 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:00.003 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:00.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:40:59 smithi142 bash[20347]: audit 2024-01-27T23:40:58.330670+0000 mgr.smithi099.hzjdah (mgr.14182) 623 : audit [DBG] from='client.14924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:00.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:40:59 smithi099 bash[16328]: audit 2024-01-27T23:40:58.330670+0000 mgr.smithi099.hzjdah (mgr.14182) 623 : audit [DBG] from='client.14924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:01.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:00 smithi142 bash[20347]: cluster 2024-01-27T23:40:59.939356+0000 mgr.smithi099.hzjdah (mgr.14182) 624 : cluster [DBG] pgmap v449: 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-01-27T23:41:01.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:00 smithi099 bash[16328]: cluster 2024-01-27T23:40:59.939356+0000 mgr.smithi099.hzjdah (mgr.14182) 624 : cluster [DBG] pgmap v449: 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-01-27T23:41:02.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:02 smithi142 bash[20347]: cluster 2024-01-27T23:41:01.941034+0000 mgr.smithi099.hzjdah (mgr.14182) 625 : 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-01-27T23:41:02.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:02 smithi099 bash[16328]: cluster 2024-01-27T23:41:01.941034+0000 mgr.smithi099.hzjdah (mgr.14182) 625 : 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-01-27T23:41:03.267 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:03.268 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:03.860 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:04.861 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:05.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:04 smithi142 bash[20347]: audit 2024-01-27T23:41:03.262069+0000 mgr.smithi099.hzjdah (mgr.14182) 626 : audit [DBG] from='client.14928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:05.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:04 smithi099 bash[16328]: audit 2024-01-27T23:41:03.262069+0000 mgr.smithi099.hzjdah (mgr.14182) 626 : audit [DBG] from='client.14928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:06.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:05 smithi142 bash[20347]: cluster 2024-01-27T23:41:03.942836+0000 mgr.smithi099.hzjdah (mgr.14182) 627 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:06.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:05 smithi099 bash[16328]: cluster 2024-01-27T23:41:03.942836+0000 mgr.smithi099.hzjdah (mgr.14182) 627 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:07.936 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:07.936 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:08.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:07 smithi142 bash[20347]: cluster 2024-01-27T23:41:05.944085+0000 mgr.smithi099.hzjdah (mgr.14182) 628 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:08.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:07 smithi099 bash[16328]: cluster 2024-01-27T23:41:05.944085+0000 mgr.smithi099.hzjdah (mgr.14182) 628 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:08.596 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:09.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:08 smithi142 bash[20347]: audit 2024-01-27T23:41:07.925297+0000 mgr.smithi099.hzjdah (mgr.14182) 629 : audit [DBG] from='client.14932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:09.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:08 smithi099 bash[16328]: audit 2024-01-27T23:41:07.925297+0000 mgr.smithi099.hzjdah (mgr.14182) 629 : audit [DBG] from='client.14932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:09.597 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:10.053 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:09 smithi142 bash[20347]: cluster 2024-01-27T23:41:07.945529+0000 mgr.smithi099.hzjdah (mgr.14182) 630 : 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-01-27T23:41:10.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:09 smithi099 bash[16328]: cluster 2024-01-27T23:41:07.945529+0000 mgr.smithi099.hzjdah (mgr.14182) 630 : 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-01-27T23:41:12.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:11 smithi099 bash[16328]: cluster 2024-01-27T23:41:09.946964+0000 mgr.smithi099.hzjdah (mgr.14182) 631 : 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-01-27T23:41:12.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:11 smithi142 bash[20347]: cluster 2024-01-27T23:41:09.946964+0000 mgr.smithi099.hzjdah (mgr.14182) 631 : 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-01-27T23:41:12.664 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:12.664 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:13.344 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:14.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:13 smithi099 bash[16328]: cluster 2024-01-27T23:41:11.948798+0000 mgr.smithi099.hzjdah (mgr.14182) 632 : 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-01-27T23:41:14.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:13 smithi099 bash[16328]: audit 2024-01-27T23:41:12.661610+0000 mgr.smithi099.hzjdah (mgr.14182) 633 : audit [DBG] from='client.14936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:14.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:13 smithi142 bash[20347]: cluster 2024-01-27T23:41:11.948798+0000 mgr.smithi099.hzjdah (mgr.14182) 632 : 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-01-27T23:41:14.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:13 smithi142 bash[20347]: audit 2024-01-27T23:41:12.661610+0000 mgr.smithi099.hzjdah (mgr.14182) 633 : audit [DBG] from='client.14936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:14.344 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:16.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:15 smithi099 bash[16328]: cluster 2024-01-27T23:41:13.950476+0000 mgr.smithi099.hzjdah (mgr.14182) 634 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:16.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:15 smithi142 bash[20347]: cluster 2024-01-27T23:41:13.950476+0000 mgr.smithi099.hzjdah (mgr.14182) 634 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:17.468 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:17.468 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:18.080 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:17 smithi099 bash[16328]: cluster 2024-01-27T23:41:15.952086+0000 mgr.smithi099.hzjdah (mgr.14182) 635 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:18.081 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:18.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:17 smithi142 bash[20347]: cluster 2024-01-27T23:41:15.952086+0000 mgr.smithi099.hzjdah (mgr.14182) 635 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:19.083 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:19.094 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:18 smithi099 bash[16328]: audit 2024-01-27T23:41:17.459670+0000 mgr.smithi099.hzjdah (mgr.14182) 636 : audit [DBG] from='client.14940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:19.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:18 smithi142 bash[20347]: audit 2024-01-27T23:41:17.459670+0000 mgr.smithi099.hzjdah (mgr.14182) 636 : audit [DBG] from='client.14940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:20.181 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:19 smithi099 bash[16328]: cluster 2024-01-27T23:41:17.954089+0000 mgr.smithi099.hzjdah (mgr.14182) 637 : 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-01-27T23:41:20.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:19 smithi142 bash[20347]: cluster 2024-01-27T23:41:17.954089+0000 mgr.smithi099.hzjdah (mgr.14182) 637 : 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-01-27T23:41:22.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:21 smithi099 bash[16328]: cluster 2024-01-27T23:41:19.955508+0000 mgr.smithi099.hzjdah (mgr.14182) 638 : 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-01-27T23:41:22.251 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:22.251 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:22.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:21 smithi142 bash[20347]: cluster 2024-01-27T23:41:19.955508+0000 mgr.smithi099.hzjdah (mgr.14182) 638 : 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-01-27T23:41:22.943 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:23.944 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:24.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:23 smithi142 bash[20347]: cluster 2024-01-27T23:41:21.956565+0000 mgr.smithi099.hzjdah (mgr.14182) 639 : 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-01-27T23:41:24.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:23 smithi142 bash[20347]: audit 2024-01-27T23:41:22.246107+0000 mgr.smithi099.hzjdah (mgr.14182) 640 : audit [DBG] from='client.14944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:24.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:23 smithi099 bash[16328]: cluster 2024-01-27T23:41:21.956565+0000 mgr.smithi099.hzjdah (mgr.14182) 639 : 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-01-27T23:41:24.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:23 smithi099 bash[16328]: audit 2024-01-27T23:41:22.246107+0000 mgr.smithi099.hzjdah (mgr.14182) 640 : audit [DBG] from='client.14944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:26.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:25 smithi142 bash[20347]: cluster 2024-01-27T23:41:23.958172+0000 mgr.smithi099.hzjdah (mgr.14182) 641 : cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:26.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:25 smithi099 bash[16328]: cluster 2024-01-27T23:41:23.958172+0000 mgr.smithi099.hzjdah (mgr.14182) 641 : cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:27.112 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:27.112 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:27.741 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:28.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:27 smithi099 bash[16328]: cluster 2024-01-27T23:41:25.959199+0000 mgr.smithi099.hzjdah (mgr.14182) 642 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:28.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:27 smithi142 bash[20347]: cluster 2024-01-27T23:41:25.959199+0000 mgr.smithi099.hzjdah (mgr.14182) 642 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:28.741 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:29.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:28 smithi099 bash[16328]: audit 2024-01-27T23:41:27.102361+0000 mgr.smithi099.hzjdah (mgr.14182) 643 : audit [DBG] from='client.14948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:29.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:28 smithi142 bash[20347]: audit 2024-01-27T23:41:27.102361+0000 mgr.smithi099.hzjdah (mgr.14182) 643 : audit [DBG] from='client.14948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:30.212 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:29 smithi099 bash[16328]: cluster 2024-01-27T23:41:27.961110+0000 mgr.smithi099.hzjdah (mgr.14182) 644 : 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-01-27T23:41:30.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:29 smithi142 bash[20347]: cluster 2024-01-27T23:41:27.961110+0000 mgr.smithi099.hzjdah (mgr.14182) 644 : 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-01-27T23:41:32.020 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:32.020 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:32.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:31 smithi142 bash[20347]: cluster 2024-01-27T23:41:29.962696+0000 mgr.smithi099.hzjdah (mgr.14182) 645 : 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-01-27T23:41:32.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:31 smithi099 bash[16328]: cluster 2024-01-27T23:41:29.962696+0000 mgr.smithi099.hzjdah (mgr.14182) 645 : 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-01-27T23:41:32.631 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:33.632 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:34.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:33 smithi099 bash[16328]: cluster 2024-01-27T23:41:31.964471+0000 mgr.smithi099.hzjdah (mgr.14182) 646 : 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-01-27T23:41:34.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:33 smithi099 bash[16328]: audit 2024-01-27T23:41:32.009205+0000 mgr.smithi099.hzjdah (mgr.14182) 647 : audit [DBG] from='client.14952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:34.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:33 smithi142 bash[20347]: cluster 2024-01-27T23:41:31.964471+0000 mgr.smithi099.hzjdah (mgr.14182) 646 : 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-01-27T23:41:34.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:33 smithi142 bash[20347]: audit 2024-01-27T23:41:32.009205+0000 mgr.smithi099.hzjdah (mgr.14182) 647 : audit [DBG] from='client.14952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:36.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:35 smithi142 bash[20347]: cluster 2024-01-27T23:41:33.966088+0000 mgr.smithi099.hzjdah (mgr.14182) 648 : cluster [DBG] pgmap v466: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:36.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:35 smithi099 bash[16328]: cluster 2024-01-27T23:41:33.966088+0000 mgr.smithi099.hzjdah (mgr.14182) 648 : cluster [DBG] pgmap v466: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:37.040 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:37.040 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:37.650 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:38.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:37 smithi099 bash[16328]: cluster 2024-01-27T23:41:35.967174+0000 mgr.smithi099.hzjdah (mgr.14182) 649 : cluster [DBG] pgmap v467: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:38.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:37 smithi142 bash[20347]: cluster 2024-01-27T23:41:35.967174+0000 mgr.smithi099.hzjdah (mgr.14182) 649 : cluster [DBG] pgmap v467: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:38.651 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:39.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:38 smithi099 bash[16328]: audit 2024-01-27T23:41:37.032845+0000 mgr.smithi099.hzjdah (mgr.14182) 650 : audit [DBG] from='client.14956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:39.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:38 smithi142 bash[20347]: audit 2024-01-27T23:41:37.032845+0000 mgr.smithi099.hzjdah (mgr.14182) 650 : audit [DBG] from='client.14956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:39.981 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:39 smithi099 bash[16328]: cluster 2024-01-27T23:41:37.968413+0000 mgr.smithi099.hzjdah (mgr.14182) 651 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:40.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:39 smithi142 bash[20347]: cluster 2024-01-27T23:41:37.968413+0000 mgr.smithi099.hzjdah (mgr.14182) 651 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:41.722 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:41.722 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:42.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:41 smithi099 bash[16328]: cluster 2024-01-27T23:41:39.969840+0000 mgr.smithi099.hzjdah (mgr.14182) 652 : cluster [DBG] pgmap v469: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:42.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:41 smithi142 bash[20347]: cluster 2024-01-27T23:41:39.969840+0000 mgr.smithi099.hzjdah (mgr.14182) 652 : cluster [DBG] pgmap v469: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:42.382 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:42 smithi142 bash[20347]: audit 2024-01-27T23:41:41.719436+0000 mgr.smithi099.hzjdah (mgr.14182) 653 : audit [DBG] from='client.14960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:42 smithi099 bash[16328]: audit 2024-01-27T23:41:41.719436+0000 mgr.smithi099.hzjdah (mgr.14182) 653 : audit [DBG] from='client.14960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:43.383 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:44.303 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:43 smithi142 bash[20347]: cluster 2024-01-27T23:41:41.970790+0000 mgr.smithi099.hzjdah (mgr.14182) 654 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:44.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:43 smithi099 bash[16328]: cluster 2024-01-27T23:41:41.970790+0000 mgr.smithi099.hzjdah (mgr.14182) 654 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:46.191 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:45 smithi099 bash[16328]: cluster 2024-01-27T23:41:43.972322+0000 mgr.smithi099.hzjdah (mgr.14182) 655 : cluster [DBG] pgmap v471: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:46.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:45 smithi142 bash[20347]: cluster 2024-01-27T23:41:43.972322+0000 mgr.smithi099.hzjdah (mgr.14182) 655 : cluster [DBG] pgmap v471: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:46.547 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:46.547 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:47.178 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:48.178 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:48.191 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:47 smithi099 bash[16328]: cluster 2024-01-27T23:41:45.973245+0000 mgr.smithi099.hzjdah (mgr.14182) 656 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:48.191 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:47 smithi099 bash[16328]: audit 2024-01-27T23:41:46.544318+0000 mgr.smithi099.hzjdah (mgr.14182) 657 : audit [DBG] from='client.14964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:47 smithi142 bash[20347]: cluster 2024-01-27T23:41:45.973245+0000 mgr.smithi099.hzjdah (mgr.14182) 656 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:47 smithi142 bash[20347]: audit 2024-01-27T23:41:46.544318+0000 mgr.smithi099.hzjdah (mgr.14182) 657 : audit [DBG] from='client.14964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:50.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:49 smithi142 bash[20347]: cluster 2024-01-27T23:41:47.974841+0000 mgr.smithi099.hzjdah (mgr.14182) 658 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:50.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:49 smithi142 bash[20347]: audit 2024-01-27T23:41:49.932844+0000 mon.smithi099 (mon.0) 830 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:41:50.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:49 smithi099 bash[16328]: cluster 2024-01-27T23:41:47.974841+0000 mgr.smithi099.hzjdah (mgr.14182) 658 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:50.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:49 smithi099 bash[16328]: audit 2024-01-27T23:41:49.932844+0000 mon.smithi099 (mon.0) 830 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:41:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:50 smithi142 bash[20347]: audit 2024-01-27T23:41:50.252580+0000 mon.smithi099 (mon.0) 831 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:41:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:50 smithi142 bash[20347]: audit 2024-01-27T23:41:50.254272+0000 mon.smithi099 (mon.0) 832 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:41:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:50 smithi142 bash[20347]: audit 2024-01-27T23:41:50.263755+0000 mon.smithi099 (mon.0) 833 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:41:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:50 smithi142 bash[20347]: audit 2024-01-27T23:41:50.269174+0000 mon.smithi099 (mon.0) 834 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:41:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:50 smithi142 bash[20347]: audit 2024-01-27T23:41:50.281877+0000 mon.smithi099 (mon.0) 835 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:41:51.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:50 smithi099 bash[16328]: audit 2024-01-27T23:41:50.252580+0000 mon.smithi099 (mon.0) 831 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:41:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:50 smithi099 bash[16328]: audit 2024-01-27T23:41:50.254272+0000 mon.smithi099 (mon.0) 832 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:41:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:50 smithi099 bash[16328]: audit 2024-01-27T23:41:50.263755+0000 mon.smithi099 (mon.0) 833 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:41:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:50 smithi099 bash[16328]: audit 2024-01-27T23:41:50.269174+0000 mon.smithi099 (mon.0) 834 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:41:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:50 smithi099 bash[16328]: audit 2024-01-27T23:41:50.281877+0000 mon.smithi099 (mon.0) 835 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:41:51.460 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:51.460 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:39:41.985331Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.udardy on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:52.100 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:52.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:51 smithi142 bash[20347]: cluster 2024-01-27T23:41:49.975911+0000 mgr.smithi099.hzjdah (mgr.14182) 659 : 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-01-27T23:41:52.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:51 smithi142 bash[20347]: cluster 2024-01-27T23:41:50.264551+0000 mgr.smithi099.hzjdah (mgr.14182) 660 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:41:52.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:51 smithi142 bash[20347]: cephadm 2024-01-27T23:41:50.284872+0000 mgr.smithi099.hzjdah (mgr.14182) 661 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.isrrct on smithi142 2024-01-27T23:41:52.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:51 smithi142 bash[20347]: cluster 2024-01-27T23:41:50.945657+0000 mon.smithi099 (mon.0) 836 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:41:52.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:51 smithi142 bash[20347]: cluster 2024-01-27T23:41:50.945692+0000 mon.smithi099 (mon.0) 837 : cluster [INF] Cluster is now healthy 2024-01-27T23:41:52.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:51 smithi142 bash[20347]: audit 2024-01-27T23:41:51.455003+0000 mgr.smithi099.hzjdah (mgr.14182) 662 : audit [DBG] from='client.14968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:52.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:51 smithi099 bash[16328]: cluster 2024-01-27T23:41:49.975911+0000 mgr.smithi099.hzjdah (mgr.14182) 659 : 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-01-27T23:41:52.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:51 smithi099 bash[16328]: cluster 2024-01-27T23:41:50.264551+0000 mgr.smithi099.hzjdah (mgr.14182) 660 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:41:52.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:51 smithi099 bash[16328]: cephadm 2024-01-27T23:41:50.284872+0000 mgr.smithi099.hzjdah (mgr.14182) 661 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.isrrct on smithi142 2024-01-27T23:41:52.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:51 smithi099 bash[16328]: cluster 2024-01-27T23:41:50.945657+0000 mon.smithi099 (mon.0) 836 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:41:52.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:51 smithi099 bash[16328]: cluster 2024-01-27T23:41:50.945692+0000 mon.smithi099 (mon.0) 837 : cluster [INF] Cluster is now healthy 2024-01-27T23:41:52.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:51 smithi099 bash[16328]: audit 2024-01-27T23:41:51.455003+0000 mgr.smithi099.hzjdah (mgr.14182) 662 : audit [DBG] from='client.14968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:53.101 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:53.112 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:52 smithi099 bash[16328]: cluster 2024-01-27T23:41:52.266001+0000 mgr.smithi099.hzjdah (mgr.14182) 663 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:41:53.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:52 smithi142 bash[20347]: cluster 2024-01-27T23:41:52.266001+0000 mgr.smithi099.hzjdah (mgr.14182) 663 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:41:55.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:54 smithi142 bash[20347]: audit 2024-01-27T23:41:54.248047+0000 mon.smithi099 (mon.0) 838 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.isrrct"}]: dispatch 2024-01-27T23:41:55.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:54 smithi099 bash[16328]: audit 2024-01-27T23:41:54.248047+0000 mon.smithi099 (mon.0) 838 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.isrrct"}]: dispatch 2024-01-27T23:41:56.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: cephadm 2024-01-27T23:41:54.247219+0000 mgr.smithi099.hzjdah (mgr.14182) 664 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:41:56.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:41:56.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.isrrct ... 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.isrrct ... 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: cephadm 2024-01-27T23:41:54.247548+0000 mgr.smithi099.hzjdah (mgr.14182) 665 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: cephadm 2024-01-27T23:41:54.249109+0000 mgr.smithi099.hzjdah (mgr.14182) 666 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.isrrct ... 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: cephadm 2024-01-27T23:41:54.251982+0000 mgr.smithi099.hzjdah (mgr.14182) 667 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.xogqpv on smithi099 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: cluster 2024-01-27T23:41:54.267143+0000 mgr.smithi099.hzjdah (mgr.14182) 668 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:41:56.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:55 smithi099 bash[16328]: audit 2024-01-27T23:41:55.383024+0000 mon.smithi099 (mon.0) 839 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:41:56.294 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:41:56.294 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:46.134649Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.yrnjzj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-yrnjzj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.yrnjzj\nDeploy daemon haproxy.nfs.foo.smithi142.yrnjzj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.925892Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.fkzyib on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-fkzyib\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.fkzyib\nDeploy daemon haproxy.nfs.foo.smithi099.fkzyib ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:40:49.927687Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qfdizd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:56.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: cephadm 2024-01-27T23:41:54.247219+0000 mgr.smithi099.hzjdah (mgr.14182) 664 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:41:56.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.isrrct ... 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:41:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.isrrct ... 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: cephadm 2024-01-27T23:41:54.247548+0000 mgr.smithi099.hzjdah (mgr.14182) 665 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: cephadm 2024-01-27T23:41:54.249109+0000 mgr.smithi099.hzjdah (mgr.14182) 666 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.isrrct ... 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: cephadm 2024-01-27T23:41:54.251982+0000 mgr.smithi099.hzjdah (mgr.14182) 667 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.xogqpv on smithi099 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: cluster 2024-01-27T23:41:54.267143+0000 mgr.smithi099.hzjdah (mgr.14182) 668 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:41:56.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:55 smithi142 bash[20347]: audit 2024-01-27T23:41:55.383024+0000 mon.smithi099 (mon.0) 839 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:41:56.905 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:57.906 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:57.917 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:57 smithi099 bash[16328]: cluster 2024-01-27T23:41:56.268319+0000 mgr.smithi099.hzjdah (mgr.14182) 669 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:41:57.917 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:57 smithi099 bash[16328]: audit 2024-01-27T23:41:56.285485+0000 mgr.smithi099.hzjdah (mgr.14182) 670 : audit [DBG] from='client.14972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:58.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:57 smithi142 bash[20347]: cluster 2024-01-27T23:41:56.268319+0000 mgr.smithi099.hzjdah (mgr.14182) 669 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:41:58.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:57 smithi142 bash[20347]: audit 2024-01-27T23:41:56.285485+0000 mgr.smithi099.hzjdah (mgr.14182) 670 : audit [DBG] from='client.14972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:59.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:58 smithi099 bash[16328]: audit 2024-01-27T23:41:58.095691+0000 mon.smithi099 (mon.0) 840 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.xogqpv"}]: dispatch 2024-01-27T23:41:59.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:58 smithi099 bash[16328]: audit 2024-01-27T23:41:58.472481+0000 mon.smithi099 (mon.0) 841 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:41:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:58 smithi142 bash[20347]: audit 2024-01-27T23:41:58.095691+0000 mon.smithi099 (mon.0) 840 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.xogqpv"}]: dispatch 2024-01-27T23:41:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:58 smithi142 bash[20347]: audit 2024-01-27T23:41:58.472481+0000 mon.smithi099 (mon.0) 841 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:42:00.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: cephadm 2024-01-27T23:41:58.094660+0000 mgr.smithi099.hzjdah (mgr.14182) 671 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.xogqpv ... 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:42:00.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.xogqpv ... 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: cephadm 2024-01-27T23:41:58.095142+0000 mgr.smithi099.hzjdah (mgr.14182) 672 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: cephadm 2024-01-27T23:41:58.096874+0000 mgr.smithi099.hzjdah (mgr.14182) 673 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.xogqpv ... 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: cephadm 2024-01-27T23:41:58.099805+0000 mgr.smithi099.hzjdah (mgr.14182) 674 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: cephadm 2024-01-27T23:41:58.103068+0000 mgr.smithi099.hzjdah (mgr.14182) 675 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: cluster 2024-01-27T23:41:58.105316+0000 mgr.smithi099.hzjdah (mgr.14182) 676 : cluster [DBG] pgmap v479: 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-01-27T23:42:00.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:41:59 smithi099 bash[16328]: cluster 2024-01-27T23:41:58.812738+0000 mon.smithi099 (mon.0) 842 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:42:00.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: cephadm 2024-01-27T23:41:58.094660+0000 mgr.smithi099.hzjdah (mgr.14182) 671 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.xogqpv ... 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:42:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.xogqpv ... 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:42:00.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: cephadm 2024-01-27T23:41:58.095142+0000 mgr.smithi099.hzjdah (mgr.14182) 672 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: cephadm 2024-01-27T23:41:58.096874+0000 mgr.smithi099.hzjdah (mgr.14182) 673 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.xogqpv ... 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:00.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: cephadm 2024-01-27T23:41:58.099805+0000 mgr.smithi099.hzjdah (mgr.14182) 674 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:42:00.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: cephadm 2024-01-27T23:41:58.103068+0000 mgr.smithi099.hzjdah (mgr.14182) 675 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:42:00.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: cluster 2024-01-27T23:41:58.105316+0000 mgr.smithi099.hzjdah (mgr.14182) 676 : cluster [DBG] pgmap v479: 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-01-27T23:42:00.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:41:59 smithi142 bash[20347]: cluster 2024-01-27T23:41:58.812738+0000 mon.smithi099 (mon.0) 842 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:42:01.232 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:01.233 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:01.834 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:02.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:01 smithi099 bash[16328]: cluster 2024-01-27T23:42:00.106837+0000 mgr.smithi099.hzjdah (mgr.14182) 677 : cluster [DBG] pgmap v480: 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-01-27T23:42:02.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:01 smithi142 bash[20347]: cluster 2024-01-27T23:42:00.106837+0000 mgr.smithi099.hzjdah (mgr.14182) 677 : cluster [DBG] pgmap v480: 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-01-27T23:42:02.835 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:03.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:02 smithi142 bash[20347]: audit 2024-01-27T23:42:01.229485+0000 mgr.smithi099.hzjdah (mgr.14182) 678 : audit [DBG] from='client.14976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:03.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:02 smithi099 bash[16328]: audit 2024-01-27T23:42:01.229485+0000 mgr.smithi099.hzjdah (mgr.14182) 678 : audit [DBG] from='client.14976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:04.224 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:03 smithi099 bash[16328]: cluster 2024-01-27T23:42:02.108691+0000 mgr.smithi099.hzjdah (mgr.14182) 679 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-27T23:42:04.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:03 smithi142 bash[20347]: cluster 2024-01-27T23:42:02.108691+0000 mgr.smithi099.hzjdah (mgr.14182) 679 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-27T23:42:06.036 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:06.036 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:06.105 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:05 smithi099 bash[16328]: cluster 2024-01-27T23:42:04.110432+0000 mgr.smithi099.hzjdah (mgr.14182) 680 : cluster [DBG] pgmap v482: 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-01-27T23:42:06.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:05 smithi142 bash[20347]: cluster 2024-01-27T23:42:04.110432+0000 mgr.smithi099.hzjdah (mgr.14182) 680 : cluster [DBG] pgmap v482: 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-01-27T23:42:06.694 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:07.696 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:07 smithi099 bash[16328]: audit 2024-01-27T23:42:06.026191+0000 mgr.smithi099.hzjdah (mgr.14182) 681 : audit [DBG] from='client.14980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:07 smithi099 bash[16328]: cluster 2024-01-27T23:42:06.111986+0000 mgr.smithi099.hzjdah (mgr.14182) 682 : cluster [DBG] pgmap v483: 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-01-27T23:42:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:07 smithi142 bash[20347]: audit 2024-01-27T23:42:06.026191+0000 mgr.smithi099.hzjdah (mgr.14182) 681 : audit [DBG] from='client.14980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:07 smithi142 bash[20347]: cluster 2024-01-27T23:42:06.111986+0000 mgr.smithi099.hzjdah (mgr.14182) 682 : cluster [DBG] pgmap v483: 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-01-27T23:42:10.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:09 smithi142 bash[20347]: cluster 2024-01-27T23:42:08.113979+0000 mgr.smithi099.hzjdah (mgr.14182) 683 : cluster [DBG] pgmap v484: 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-01-27T23:42:10.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:09 smithi099 bash[16328]: cluster 2024-01-27T23:42:08.113979+0000 mgr.smithi099.hzjdah (mgr.14182) 683 : cluster [DBG] pgmap v484: 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-01-27T23:42:10.793 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:10.793 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:11.434 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:11 smithi142 bash[20347]: cluster 2024-01-27T23:42:10.115152+0000 mgr.smithi099.hzjdah (mgr.14182) 684 : 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-01-27T23:42:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:11 smithi142 bash[20347]: audit 2024-01-27T23:42:10.383166+0000 mon.smithi099 (mon.0) 843 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:42:11.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:11 smithi142 bash[20347]: audit 2024-01-27T23:42:10.784632+0000 mgr.smithi099.hzjdah (mgr.14182) 685 : audit [DBG] from='client.14984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:11 smithi099 bash[16328]: cluster 2024-01-27T23:42:10.115152+0000 mgr.smithi099.hzjdah (mgr.14182) 684 : 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-01-27T23:42:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:11 smithi099 bash[16328]: audit 2024-01-27T23:42:10.383166+0000 mon.smithi099 (mon.0) 843 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:42:11.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:11 smithi099 bash[16328]: audit 2024-01-27T23:42:10.784632+0000 mgr.smithi099.hzjdah (mgr.14182) 685 : audit [DBG] from='client.14984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:12.435 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:13.703 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:13 smithi099 bash[16328]: cluster 2024-01-27T23:42:12.116806+0000 mgr.smithi099.hzjdah (mgr.14182) 686 : 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-01-27T23:42:13.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:13 smithi142 bash[20347]: cluster 2024-01-27T23:42:12.116806+0000 mgr.smithi099.hzjdah (mgr.14182) 686 : 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-01-27T23:42:15.715 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:15.716 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:16.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:15 smithi142 bash[20347]: cluster 2024-01-27T23:42:14.118439+0000 mgr.smithi099.hzjdah (mgr.14182) 687 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:16.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:15 smithi099 bash[16328]: cluster 2024-01-27T23:42:14.118439+0000 mgr.smithi099.hzjdah (mgr.14182) 687 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:16.352 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:17.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:16 smithi099 bash[16328]: audit 2024-01-27T23:42:15.704913+0000 mgr.smithi099.hzjdah (mgr.14182) 688 : audit [DBG] from='client.14988 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:17.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:16 smithi142 bash[20347]: audit 2024-01-27T23:42:15.704913+0000 mgr.smithi099.hzjdah (mgr.14182) 688 : audit [DBG] from='client.14988 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:17.352 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:18.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:17 smithi099 bash[16328]: cluster 2024-01-27T23:42:16.119888+0000 mgr.smithi099.hzjdah (mgr.14182) 689 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:18.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:17 smithi142 bash[20347]: cluster 2024-01-27T23:42:16.119888+0000 mgr.smithi099.hzjdah (mgr.14182) 689 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:20.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:19 smithi099 bash[16328]: cluster 2024-01-27T23:42:18.121926+0000 mgr.smithi099.hzjdah (mgr.14182) 690 : 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-01-27T23:42:20.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:19 smithi142 bash[20347]: cluster 2024-01-27T23:42:18.121926+0000 mgr.smithi099.hzjdah (mgr.14182) 690 : 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-01-27T23:42:20.564 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:20.564 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:21.209 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:21 smithi099 bash[16328]: cluster 2024-01-27T23:42:20.122861+0000 mgr.smithi099.hzjdah (mgr.14182) 691 : 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-01-27T23:42:22.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:21 smithi099 bash[16328]: audit 2024-01-27T23:42:20.553822+0000 mgr.smithi099.hzjdah (mgr.14182) 692 : audit [DBG] from='client.14992 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:22.210 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:21 smithi142 bash[20347]: cluster 2024-01-27T23:42:20.122861+0000 mgr.smithi099.hzjdah (mgr.14182) 691 : 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-01-27T23:42:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:21 smithi142 bash[20347]: audit 2024-01-27T23:42:20.553822+0000 mgr.smithi099.hzjdah (mgr.14182) 692 : audit [DBG] from='client.14992 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:24.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:23 smithi099 bash[16328]: cluster 2024-01-27T23:42:22.124538+0000 mgr.smithi099.hzjdah (mgr.14182) 693 : 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-01-27T23:42:24.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:23 smithi142 bash[20347]: cluster 2024-01-27T23:42:22.124538+0000 mgr.smithi099.hzjdah (mgr.14182) 693 : 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-01-27T23:42:25.436 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:25.436 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:26.054 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:26.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:25 smithi142 bash[20347]: cluster 2024-01-27T23:42:24.126223+0000 mgr.smithi099.hzjdah (mgr.14182) 694 : cluster [DBG] pgmap v492: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:26.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:25 smithi099 bash[16328]: cluster 2024-01-27T23:42:24.126223+0000 mgr.smithi099.hzjdah (mgr.14182) 694 : cluster [DBG] pgmap v492: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:27.055 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:27.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:26 smithi142 bash[20347]: audit 2024-01-27T23:42:25.432994+0000 mgr.smithi099.hzjdah (mgr.14182) 695 : audit [DBG] from='client.14996 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:27.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:26 smithi099 bash[16328]: audit 2024-01-27T23:42:25.432994+0000 mgr.smithi099.hzjdah (mgr.14182) 695 : audit [DBG] from='client.14996 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:28.143 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:27 smithi099 bash[16328]: cluster 2024-01-27T23:42:26.127743+0000 mgr.smithi099.hzjdah (mgr.14182) 696 : cluster [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:28.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:27 smithi142 bash[20347]: cluster 2024-01-27T23:42:26.127743+0000 mgr.smithi099.hzjdah (mgr.14182) 696 : cluster [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:30.072 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:30.073 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:30.081 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:29 smithi099 bash[16328]: cluster 2024-01-27T23:42:28.129345+0000 mgr.smithi099.hzjdah (mgr.14182) 697 : 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-01-27T23:42:30.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:29 smithi142 bash[20347]: cluster 2024-01-27T23:42:28.129345+0000 mgr.smithi099.hzjdah (mgr.14182) 697 : 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-01-27T23:42:30.724 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:31.725 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:32.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:31 smithi099 bash[16328]: audit 2024-01-27T23:42:30.064982+0000 mgr.smithi099.hzjdah (mgr.14182) 698 : audit [DBG] from='client.15000 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:32.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:31 smithi099 bash[16328]: cluster 2024-01-27T23:42:30.130734+0000 mgr.smithi099.hzjdah (mgr.14182) 699 : 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-01-27T23:42:32.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:31 smithi142 bash[20347]: audit 2024-01-27T23:42:30.064982+0000 mgr.smithi099.hzjdah (mgr.14182) 698 : audit [DBG] from='client.15000 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:32.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:31 smithi142 bash[20347]: cluster 2024-01-27T23:42:30.130734+0000 mgr.smithi099.hzjdah (mgr.14182) 699 : 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-01-27T23:42:34.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:33 smithi142 bash[20347]: cluster 2024-01-27T23:42:32.132417+0000 mgr.smithi099.hzjdah (mgr.14182) 700 : 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-01-27T23:42:34.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:33 smithi099 bash[16328]: cluster 2024-01-27T23:42:32.132417+0000 mgr.smithi099.hzjdah (mgr.14182) 700 : 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-01-27T23:42:34.942 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:34.942 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:35.574 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:36.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:35 smithi142 bash[20347]: cluster 2024-01-27T23:42:34.134110+0000 mgr.smithi099.hzjdah (mgr.14182) 701 : cluster [DBG] pgmap v497: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:36.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:35 smithi142 bash[20347]: audit 2024-01-27T23:42:34.934450+0000 mgr.smithi099.hzjdah (mgr.14182) 702 : audit [DBG] from='client.15004 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:36.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:35 smithi099 bash[16328]: cluster 2024-01-27T23:42:34.134110+0000 mgr.smithi099.hzjdah (mgr.14182) 701 : cluster [DBG] pgmap v497: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:36.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:35 smithi099 bash[16328]: audit 2024-01-27T23:42:34.934450+0000 mgr.smithi099.hzjdah (mgr.14182) 702 : audit [DBG] from='client.15004 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:36.575 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:37.930 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:37 smithi099 bash[16328]: cluster 2024-01-27T23:42:36.135599+0000 mgr.smithi099.hzjdah (mgr.14182) 703 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:38.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:37 smithi142 bash[20347]: cluster 2024-01-27T23:42:36.135599+0000 mgr.smithi099.hzjdah (mgr.14182) 703 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:39.663 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:39.663 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:40.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:39 smithi099 bash[16328]: cluster 2024-01-27T23:42:38.137588+0000 mgr.smithi099.hzjdah (mgr.14182) 704 : 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-01-27T23:42:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:39 smithi142 bash[20347]: cluster 2024-01-27T23:42:38.137588+0000 mgr.smithi099.hzjdah (mgr.14182) 704 : 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-01-27T23:42:40.338 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:41.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:40 smithi142 bash[20347]: audit 2024-01-27T23:42:39.656386+0000 mgr.smithi099.hzjdah (mgr.14182) 705 : audit [DBG] from='client.15008 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:41.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:40 smithi099 bash[16328]: audit 2024-01-27T23:42:39.656386+0000 mgr.smithi099.hzjdah (mgr.14182) 705 : audit [DBG] from='client.15008 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:41.339 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:42.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:41 smithi142 bash[20347]: cluster 2024-01-27T23:42:40.139097+0000 mgr.smithi099.hzjdah (mgr.14182) 706 : 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-01-27T23:42:42.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:41 smithi099 bash[16328]: cluster 2024-01-27T23:42:40.139097+0000 mgr.smithi099.hzjdah (mgr.14182) 706 : 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-01-27T23:42:44.209 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:43 smithi099 bash[16328]: cluster 2024-01-27T23:42:42.140821+0000 mgr.smithi099.hzjdah (mgr.14182) 707 : 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-01-27T23:42:44.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:43 smithi142 bash[20347]: cluster 2024-01-27T23:42:42.140821+0000 mgr.smithi099.hzjdah (mgr.14182) 707 : 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-01-27T23:42:44.648 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:44.648 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:45.309 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:46.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:45 smithi142 bash[20347]: cluster 2024-01-27T23:42:44.142609+0000 mgr.smithi099.hzjdah (mgr.14182) 708 : cluster [DBG] pgmap v502: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:46.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:45 smithi142 bash[20347]: audit 2024-01-27T23:42:44.638634+0000 mgr.smithi099.hzjdah (mgr.14182) 709 : audit [DBG] from='client.15012 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:46.310 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:46.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:45 smithi099 bash[16328]: cluster 2024-01-27T23:42:44.142609+0000 mgr.smithi099.hzjdah (mgr.14182) 708 : cluster [DBG] pgmap v502: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:46.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:45 smithi099 bash[16328]: audit 2024-01-27T23:42:44.638634+0000 mgr.smithi099.hzjdah (mgr.14182) 709 : audit [DBG] from='client.15012 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:47 smithi142 bash[20347]: cluster 2024-01-27T23:42:46.144160+0000 mgr.smithi099.hzjdah (mgr.14182) 710 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:48.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:47 smithi099 bash[16328]: cluster 2024-01-27T23:42:46.144160+0000 mgr.smithi099.hzjdah (mgr.14182) 710 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:49.472 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:49.472 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:50.086 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:50.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:49 smithi142 bash[20347]: cluster 2024-01-27T23:42:48.146212+0000 mgr.smithi099.hzjdah (mgr.14182) 711 : cluster [DBG] pgmap v504: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:50.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:49 smithi099 bash[16328]: cluster 2024-01-27T23:42:48.146212+0000 mgr.smithi099.hzjdah (mgr.14182) 711 : cluster [DBG] pgmap v504: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:51.087 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:50 smithi142 bash[20347]: audit 2024-01-27T23:42:49.469089+0000 mgr.smithi099.hzjdah (mgr.14182) 712 : audit [DBG] from='client.15016 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:50 smithi099 bash[16328]: audit 2024-01-27T23:42:49.469089+0000 mgr.smithi099.hzjdah (mgr.14182) 712 : audit [DBG] from='client.15016 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:52.261 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:51 smithi099 bash[16328]: cluster 2024-01-27T23:42:50.147705+0000 mgr.smithi099.hzjdah (mgr.14182) 713 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:52.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:51 smithi142 bash[20347]: cluster 2024-01-27T23:42:50.147705+0000 mgr.smithi099.hzjdah (mgr.14182) 713 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:54.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:53 smithi142 bash[20347]: cluster 2024-01-27T23:42:52.149464+0000 mgr.smithi099.hzjdah (mgr.14182) 714 : cluster [DBG] pgmap v506: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:54.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:53 smithi099 bash[16328]: cluster 2024-01-27T23:42:52.149464+0000 mgr.smithi099.hzjdah (mgr.14182) 714 : cluster [DBG] pgmap v506: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:54.421 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:54.421 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:55.049 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:56.050 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:56.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:55 smithi142 bash[20347]: cluster 2024-01-27T23:42:54.151030+0000 mgr.smithi099.hzjdah (mgr.14182) 715 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:56.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:55 smithi142 bash[20347]: audit 2024-01-27T23:42:54.411839+0000 mgr.smithi099.hzjdah (mgr.14182) 716 : audit [DBG] from='client.15020 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:56.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:55 smithi099 bash[16328]: cluster 2024-01-27T23:42:54.151030+0000 mgr.smithi099.hzjdah (mgr.14182) 715 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:56.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:55 smithi099 bash[16328]: audit 2024-01-27T23:42:54.411839+0000 mgr.smithi099.hzjdah (mgr.14182) 716 : audit [DBG] from='client.15020 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:58.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:57 smithi142 bash[20347]: cluster 2024-01-27T23:42:56.152430+0000 mgr.smithi099.hzjdah (mgr.14182) 717 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:58.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:57 smithi099 bash[16328]: cluster 2024-01-27T23:42:56.152430+0000 mgr.smithi099.hzjdah (mgr.14182) 717 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:59.278 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:42:59.278 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:49.929337Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.hlniul on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:58 smithi142 bash[20347]: audit 2024-01-27T23:42:58.108801+0000 mon.smithi099 (mon.0) 844 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:42:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:58 smithi142 bash[20347]: audit 2024-01-27T23:42:58.409929+0000 mon.smithi099 (mon.0) 845 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:42:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:58 smithi142 bash[20347]: audit 2024-01-27T23:42:58.411365+0000 mon.smithi099 (mon.0) 846 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:42:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:58 smithi142 bash[20347]: audit 2024-01-27T23:42:58.420699+0000 mon.smithi099 (mon.0) 847 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:42:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:58 smithi142 bash[20347]: audit 2024-01-27T23:42:58.431422+0000 mon.smithi099 (mon.0) 848 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:42:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:58 smithi142 bash[20347]: audit 2024-01-27T23:42:58.441195+0000 mon.smithi099 (mon.0) 849 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:42:59.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:58 smithi099 bash[16328]: audit 2024-01-27T23:42:58.108801+0000 mon.smithi099 (mon.0) 844 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:42:59.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:58 smithi099 bash[16328]: audit 2024-01-27T23:42:58.409929+0000 mon.smithi099 (mon.0) 845 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:42:59.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:58 smithi099 bash[16328]: audit 2024-01-27T23:42:58.411365+0000 mon.smithi099 (mon.0) 846 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:42:59.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:58 smithi099 bash[16328]: audit 2024-01-27T23:42:58.420699+0000 mon.smithi099 (mon.0) 847 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:42:59.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:58 smithi099 bash[16328]: audit 2024-01-27T23:42:58.431422+0000 mon.smithi099 (mon.0) 848 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:42:59.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:58 smithi099 bash[16328]: audit 2024-01-27T23:42:58.441195+0000 mon.smithi099 (mon.0) 849 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:42:59.902 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:00.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:59 smithi142 bash[20347]: cluster 2024-01-27T23:42:58.154305+0000 mgr.smithi099.hzjdah (mgr.14182) 718 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:00.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:59 smithi142 bash[20347]: cluster 2024-01-27T23:42:58.421634+0000 mgr.smithi099.hzjdah (mgr.14182) 719 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:43:00.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:59 smithi142 bash[20347]: cephadm 2024-01-27T23:42:58.443978+0000 mgr.smithi099.hzjdah (mgr.14182) 720 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.zkhrjt on smithi142 2024-01-27T23:43:00.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:59 smithi142 bash[20347]: cluster 2024-01-27T23:42:58.952537+0000 mon.smithi099 (mon.0) 850 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:43:00.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:42:59 smithi142 bash[20347]: cluster 2024-01-27T23:42:58.952599+0000 mon.smithi099 (mon.0) 851 : cluster [INF] Cluster is now healthy 2024-01-27T23:43:00.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:59 smithi099 bash[16328]: cluster 2024-01-27T23:42:58.154305+0000 mgr.smithi099.hzjdah (mgr.14182) 718 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:00.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:59 smithi099 bash[16328]: cluster 2024-01-27T23:42:58.421634+0000 mgr.smithi099.hzjdah (mgr.14182) 719 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:43:00.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:59 smithi099 bash[16328]: cephadm 2024-01-27T23:42:58.443978+0000 mgr.smithi099.hzjdah (mgr.14182) 720 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.zkhrjt on smithi142 2024-01-27T23:43:00.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:59 smithi099 bash[16328]: cluster 2024-01-27T23:42:58.952537+0000 mon.smithi099 (mon.0) 850 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:43:00.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:42:59 smithi099 bash[16328]: cluster 2024-01-27T23:42:58.952599+0000 mon.smithi099 (mon.0) 851 : cluster [INF] Cluster is now healthy 2024-01-27T23:43:00.902 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:00 smithi142 bash[20347]: audit 2024-01-27T23:42:59.274722+0000 mgr.smithi099.hzjdah (mgr.14182) 721 : audit [DBG] from='client.15024 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:01.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:00 smithi099 bash[16328]: audit 2024-01-27T23:42:59.274722+0000 mgr.smithi099.hzjdah (mgr.14182) 721 : audit [DBG] from='client.15024 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:02.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:01 smithi142 bash[20347]: cluster 2024-01-27T23:43:00.422812+0000 mgr.smithi099.hzjdah (mgr.14182) 722 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:43:02.237 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:01 smithi099 bash[16328]: cluster 2024-01-27T23:43:00.422812+0000 mgr.smithi099.hzjdah (mgr.14182) 722 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:43:03.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: cephadm 2024-01-27T23:43:02.239917+0000 mgr.smithi099.hzjdah (mgr.14182) 723 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.zkhrjt ... 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:43:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.zkhrjt ... 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: cephadm 2024-01-27T23:43:02.240361+0000 mgr.smithi099.hzjdah (mgr.14182) 724 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: audit 2024-01-27T23:43:02.241044+0000 mon.smithi099 (mon.0) 852 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.zkhrjt"}]: dispatch 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: cephadm 2024-01-27T23:43:02.242263+0000 mgr.smithi099.hzjdah (mgr.14182) 725 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.zkhrjt ... 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: cephadm 2024-01-27T23:43:02.244662+0000 mgr.smithi099.hzjdah (mgr.14182) 726 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.xrfvtn on smithi099 2024-01-27T23:43:03.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:02 smithi142 bash[20347]: cluster 2024-01-27T23:43:02.423565+0000 mgr.smithi099.hzjdah (mgr.14182) 727 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:43:03.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: cephadm 2024-01-27T23:43:02.239917+0000 mgr.smithi099.hzjdah (mgr.14182) 723 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.zkhrjt ... 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.zkhrjt ... 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: cephadm 2024-01-27T23:43:02.240361+0000 mgr.smithi099.hzjdah (mgr.14182) 724 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: audit 2024-01-27T23:43:02.241044+0000 mon.smithi099 (mon.0) 852 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.zkhrjt"}]: dispatch 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: cephadm 2024-01-27T23:43:02.242263+0000 mgr.smithi099.hzjdah (mgr.14182) 725 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt 2024-01-27T23:43:03.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.zkhrjt ... 2024-01-27T23:43:03.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:03.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:03.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:03.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:03.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: cephadm 2024-01-27T23:43:02.244662+0000 mgr.smithi099.hzjdah (mgr.14182) 726 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.xrfvtn on smithi099 2024-01-27T23:43:03.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:02 smithi099 bash[16328]: cluster 2024-01-27T23:43:02.423565+0000 mgr.smithi099.hzjdah (mgr.14182) 727 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:43:04.237 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:04.237 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:54.248950Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.isrrct on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-isrrct\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.isrrct\nDeploy daemon haproxy.nfs.foo.smithi142.isrrct ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.096697Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xogqpv on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xogqpv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xogqpv\nDeploy daemon haproxy.nfs.foo.smithi099.xogqpv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:41:58.099658Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dwrtoa on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:04.839 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:05.840 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:06.089 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:05 smithi099 bash[16328]: audit 2024-01-27T23:43:04.227921+0000 mgr.smithi099.hzjdah (mgr.14182) 728 : audit [DBG] from='client.15028 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:06.089 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:05 smithi099 bash[16328]: cluster 2024-01-27T23:43:04.424803+0000 mgr.smithi099.hzjdah (mgr.14182) 729 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:43:06.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:05 smithi142 bash[20347]: audit 2024-01-27T23:43:04.227921+0000 mgr.smithi099.hzjdah (mgr.14182) 728 : audit [DBG] from='client.15028 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:06.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:05 smithi142 bash[20347]: cluster 2024-01-27T23:43:04.424803+0000 mgr.smithi099.hzjdah (mgr.14182) 729 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:43:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:07 smithi099 bash[16328]: cluster 2024-01-27T23:43:06.425930+0000 mgr.smithi099.hzjdah (mgr.14182) 730 : cluster [DBG] pgmap v514: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:43:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:07 smithi099 bash[16328]: audit 2024-01-27T23:43:07.075107+0000 mon.smithi099 (mon.0) 853 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.xrfvtn"}]: dispatch 2024-01-27T23:43:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:07 smithi142 bash[20347]: cluster 2024-01-27T23:43:06.425930+0000 mgr.smithi099.hzjdah (mgr.14182) 730 : cluster [DBG] pgmap v514: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:43:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:07 smithi142 bash[20347]: audit 2024-01-27T23:43:07.075107+0000 mon.smithi099 (mon.0) 853 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.xrfvtn"}]: dispatch 2024-01-27T23:43:09.014 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:09.014 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:09.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: cephadm 2024-01-27T23:43:07.074017+0000 mgr.smithi099.hzjdah (mgr.14182) 731 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.xrfvtn ... 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:43:09.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.xrfvtn ... 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:09.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: cephadm 2024-01-27T23:43:07.074511+0000 mgr.smithi099.hzjdah (mgr.14182) 732 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: cephadm 2024-01-27T23:43:07.076505+0000 mgr.smithi099.hzjdah (mgr.14182) 733 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.xrfvtn ... 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: cephadm 2024-01-27T23:43:07.078564+0000 mgr.smithi099.hzjdah (mgr.14182) 734 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:43:09.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: cephadm 2024-01-27T23:43:07.080362+0000 mgr.smithi099.hzjdah (mgr.14182) 735 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:43:09.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: cluster 2024-01-27T23:43:07.082446+0000 mgr.smithi099.hzjdah (mgr.14182) 736 : cluster [DBG] pgmap v515: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 114 B/s rd, 0 op/s 2024-01-27T23:43:09.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: cluster 2024-01-27T23:43:07.816824+0000 mon.smithi099 (mon.0) 854 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:43:09.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:08 smithi099 bash[16328]: audit 2024-01-27T23:43:08.534632+0000 mon.smithi099 (mon.0) 855 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:43:09.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: cephadm 2024-01-27T23:43:07.074017+0000 mgr.smithi099.hzjdah (mgr.14182) 731 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.xrfvtn ... 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:43:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.xrfvtn ... 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:09.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: cephadm 2024-01-27T23:43:07.074511+0000 mgr.smithi099.hzjdah (mgr.14182) 732 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: cephadm 2024-01-27T23:43:07.076505+0000 mgr.smithi099.hzjdah (mgr.14182) 733 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.xrfvtn ... 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: cephadm 2024-01-27T23:43:07.078564+0000 mgr.smithi099.hzjdah (mgr.14182) 734 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: cephadm 2024-01-27T23:43:07.080362+0000 mgr.smithi099.hzjdah (mgr.14182) 735 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:43:09.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: cluster 2024-01-27T23:43:07.082446+0000 mgr.smithi099.hzjdah (mgr.14182) 736 : cluster [DBG] pgmap v515: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 114 B/s rd, 0 op/s 2024-01-27T23:43:09.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: cluster 2024-01-27T23:43:07.816824+0000 mon.smithi099 (mon.0) 854 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:43:09.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:08 smithi142 bash[20347]: audit 2024-01-27T23:43:08.534632+0000 mon.smithi099 (mon.0) 855 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:43:09.623 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:10.625 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:11.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:10 smithi099 bash[16328]: audit 2024-01-27T23:43:09.011060+0000 mgr.smithi099.hzjdah (mgr.14182) 737 : audit [DBG] from='client.15032 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:11.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:10 smithi099 bash[16328]: cluster 2024-01-27T23:43:09.083610+0000 mgr.smithi099.hzjdah (mgr.14182) 738 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:43:11.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:10 smithi142 bash[20347]: audit 2024-01-27T23:43:09.011060+0000 mgr.smithi099.hzjdah (mgr.14182) 737 : audit [DBG] from='client.15032 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:11.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:10 smithi142 bash[20347]: cluster 2024-01-27T23:43:09.083610+0000 mgr.smithi099.hzjdah (mgr.14182) 738 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:43:13.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:12 smithi142 bash[20347]: cluster 2024-01-27T23:43:11.085151+0000 mgr.smithi099.hzjdah (mgr.14182) 739 : cluster [DBG] pgmap v517: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:43:13.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:12 smithi099 bash[16328]: cluster 2024-01-27T23:43:11.085151+0000 mgr.smithi099.hzjdah (mgr.14182) 739 : cluster [DBG] pgmap v517: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:43:13.916 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:13.916 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:14.562 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:15.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:14 smithi142 bash[20347]: cluster 2024-01-27T23:43:13.087137+0000 mgr.smithi099.hzjdah (mgr.14182) 740 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:43:15.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:14 smithi142 bash[20347]: audit 2024-01-27T23:43:13.905950+0000 mgr.smithi099.hzjdah (mgr.14182) 741 : audit [DBG] from='client.15036 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:15.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:14 smithi099 bash[16328]: cluster 2024-01-27T23:43:13.087137+0000 mgr.smithi099.hzjdah (mgr.14182) 740 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:43:15.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:14 smithi099 bash[16328]: audit 2024-01-27T23:43:13.905950+0000 mgr.smithi099.hzjdah (mgr.14182) 741 : audit [DBG] from='client.15036 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:15.562 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:16.889 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:16 smithi099 bash[16328]: cluster 2024-01-27T23:43:15.088608+0000 mgr.smithi099.hzjdah (mgr.14182) 742 : cluster [DBG] pgmap v519: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 192 B/s rd, 0 op/s 2024-01-27T23:43:17.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:16 smithi142 bash[20347]: cluster 2024-01-27T23:43:15.088608+0000 mgr.smithi099.hzjdah (mgr.14182) 742 : cluster [DBG] pgmap v519: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 192 B/s rd, 0 op/s 2024-01-27T23:43:18.689 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:18.689 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:19.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:18 smithi099 bash[16328]: cluster 2024-01-27T23:43:17.090352+0000 mgr.smithi099.hzjdah (mgr.14182) 743 : cluster [DBG] pgmap v520: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:43:19.277 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:19.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:18 smithi142 bash[20347]: cluster 2024-01-27T23:43:17.090352+0000 mgr.smithi099.hzjdah (mgr.14182) 743 : cluster [DBG] pgmap v520: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:43:20.278 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:20.291 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:19 smithi099 bash[16328]: audit 2024-01-27T23:43:18.685746+0000 mgr.smithi099.hzjdah (mgr.14182) 744 : audit [DBG] from='client.15040 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:20.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:19 smithi142 bash[20347]: audit 2024-01-27T23:43:18.685746+0000 mgr.smithi099.hzjdah (mgr.14182) 744 : audit [DBG] from='client.15040 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:21.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:20 smithi142 bash[20347]: cluster 2024-01-27T23:43:19.091996+0000 mgr.smithi099.hzjdah (mgr.14182) 745 : 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-01-27T23:43:21.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:20 smithi099 bash[16328]: cluster 2024-01-27T23:43:19.091996+0000 mgr.smithi099.hzjdah (mgr.14182) 745 : 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-01-27T23:43:23.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:22 smithi142 bash[20347]: cluster 2024-01-27T23:43:21.093516+0000 mgr.smithi099.hzjdah (mgr.14182) 746 : 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-01-27T23:43:23.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:22 smithi099 bash[16328]: cluster 2024-01-27T23:43:21.093516+0000 mgr.smithi099.hzjdah (mgr.14182) 746 : 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-01-27T23:43:23.426 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:23.426 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:24.074 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:25.075 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:25.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:24 smithi142 bash[20347]: cluster 2024-01-27T23:43:23.095207+0000 mgr.smithi099.hzjdah (mgr.14182) 747 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:25.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:24 smithi142 bash[20347]: audit 2024-01-27T23:43:23.422353+0000 mgr.smithi099.hzjdah (mgr.14182) 748 : audit [DBG] from='client.15044 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:25.421 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:24 smithi099 bash[16328]: cluster 2024-01-27T23:43:23.095207+0000 mgr.smithi099.hzjdah (mgr.14182) 747 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:25.422 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:24 smithi099 bash[16328]: audit 2024-01-27T23:43:23.422353+0000 mgr.smithi099.hzjdah (mgr.14182) 748 : audit [DBG] from='client.15044 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:27.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:26 smithi142 bash[20347]: cluster 2024-01-27T23:43:25.096334+0000 mgr.smithi099.hzjdah (mgr.14182) 749 : cluster [DBG] pgmap v524: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:27.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:26 smithi099 bash[16328]: cluster 2024-01-27T23:43:25.096334+0000 mgr.smithi099.hzjdah (mgr.14182) 749 : cluster [DBG] pgmap v524: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:28.452 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:28.453 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:29.118 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:29.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:28 smithi142 bash[20347]: cluster 2024-01-27T23:43:27.097977+0000 mgr.smithi099.hzjdah (mgr.14182) 750 : 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-01-27T23:43:29.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:28 smithi099 bash[16328]: cluster 2024-01-27T23:43:27.097977+0000 mgr.smithi099.hzjdah (mgr.14182) 750 : 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-01-27T23:43:30.119 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:30.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:29 smithi142 bash[20347]: audit 2024-01-27T23:43:28.449282+0000 mgr.smithi099.hzjdah (mgr.14182) 751 : audit [DBG] from='client.15048 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:30.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:29 smithi099 bash[16328]: audit 2024-01-27T23:43:28.449282+0000 mgr.smithi099.hzjdah (mgr.14182) 751 : audit [DBG] from='client.15048 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:31.201 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:30 smithi099 bash[16328]: cluster 2024-01-27T23:43:29.099616+0000 mgr.smithi099.hzjdah (mgr.14182) 752 : 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-01-27T23:43:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:30 smithi142 bash[20347]: cluster 2024-01-27T23:43:29.099616+0000 mgr.smithi099.hzjdah (mgr.14182) 752 : 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-01-27T23:43:33.297 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:33.297 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:33.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:32 smithi142 bash[20347]: cluster 2024-01-27T23:43:31.101141+0000 mgr.smithi099.hzjdah (mgr.14182) 753 : 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-01-27T23:43:33.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:32 smithi099 bash[16328]: cluster 2024-01-27T23:43:31.101141+0000 mgr.smithi099.hzjdah (mgr.14182) 753 : 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-01-27T23:43:33.969 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:34.970 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:34 smithi142 bash[20347]: cluster 2024-01-27T23:43:33.102160+0000 mgr.smithi099.hzjdah (mgr.14182) 754 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:34 smithi142 bash[20347]: audit 2024-01-27T23:43:33.294077+0000 mgr.smithi099.hzjdah (mgr.14182) 755 : audit [DBG] from='client.15052 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:34 smithi099 bash[16328]: cluster 2024-01-27T23:43:33.102160+0000 mgr.smithi099.hzjdah (mgr.14182) 754 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:35.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:34 smithi099 bash[16328]: audit 2024-01-27T23:43:33.294077+0000 mgr.smithi099.hzjdah (mgr.14182) 755 : audit [DBG] from='client.15052 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:37.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:36 smithi142 bash[20347]: cluster 2024-01-27T23:43:35.103494+0000 mgr.smithi099.hzjdah (mgr.14182) 756 : cluster [DBG] pgmap v529: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:37.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:36 smithi099 bash[16328]: cluster 2024-01-27T23:43:35.103494+0000 mgr.smithi099.hzjdah (mgr.14182) 756 : cluster [DBG] pgmap v529: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:38.171 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:38.171 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:38.768 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:39.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:38 smithi099 bash[16328]: cluster 2024-01-27T23:43:37.105188+0000 mgr.smithi099.hzjdah (mgr.14182) 757 : 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-01-27T23:43:39.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:38 smithi142 bash[20347]: cluster 2024-01-27T23:43:37.105188+0000 mgr.smithi099.hzjdah (mgr.14182) 757 : 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-01-27T23:43:39.771 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:40.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:39 smithi099 bash[16328]: audit 2024-01-27T23:43:38.165856+0000 mgr.smithi099.hzjdah (mgr.14182) 758 : audit [DBG] from='client.15056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:40.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:39 smithi142 bash[20347]: audit 2024-01-27T23:43:38.165856+0000 mgr.smithi099.hzjdah (mgr.14182) 758 : audit [DBG] from='client.15056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:41.148 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:40 smithi099 bash[16328]: cluster 2024-01-27T23:43:39.106983+0000 mgr.smithi099.hzjdah (mgr.14182) 759 : 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-01-27T23:43:41.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:40 smithi142 bash[20347]: cluster 2024-01-27T23:43:39.106983+0000 mgr.smithi099.hzjdah (mgr.14182) 759 : 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-01-27T23:43:42.963 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:42.963 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:42 smithi142 bash[20347]: cluster 2024-01-27T23:43:41.108615+0000 mgr.smithi099.hzjdah (mgr.14182) 760 : 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-01-27T23:43:43.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:42 smithi099 bash[16328]: cluster 2024-01-27T23:43:41.108615+0000 mgr.smithi099.hzjdah (mgr.14182) 760 : 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-01-27T23:43:43.601 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:44.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:43 smithi142 bash[20347]: audit 2024-01-27T23:43:42.956039+0000 mgr.smithi099.hzjdah (mgr.14182) 761 : audit [DBG] from='client.15060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:44.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:43 smithi099 bash[16328]: audit 2024-01-27T23:43:42.956039+0000 mgr.smithi099.hzjdah (mgr.14182) 761 : audit [DBG] from='client.15060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:44.602 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:45.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:44 smithi142 bash[20347]: cluster 2024-01-27T23:43:43.110698+0000 mgr.smithi099.hzjdah (mgr.14182) 762 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:45.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:44 smithi099 bash[16328]: cluster 2024-01-27T23:43:43.110698+0000 mgr.smithi099.hzjdah (mgr.14182) 762 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:47.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:46 smithi142 bash[20347]: cluster 2024-01-27T23:43:45.112198+0000 mgr.smithi099.hzjdah (mgr.14182) 763 : cluster [DBG] pgmap v534: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:47.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:46 smithi099 bash[16328]: cluster 2024-01-27T23:43:45.112198+0000 mgr.smithi099.hzjdah (mgr.14182) 763 : cluster [DBG] pgmap v534: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:47.923 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:47.923 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:48.552 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:49.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:48 smithi142 bash[20347]: cluster 2024-01-27T23:43:47.113968+0000 mgr.smithi099.hzjdah (mgr.14182) 764 : 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-01-27T23:43:49.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:48 smithi142 bash[20347]: audit 2024-01-27T23:43:47.911861+0000 mgr.smithi099.hzjdah (mgr.14182) 765 : audit [DBG] from='client.15064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:49.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:48 smithi099 bash[16328]: cluster 2024-01-27T23:43:47.113968+0000 mgr.smithi099.hzjdah (mgr.14182) 764 : 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-01-27T23:43:49.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:48 smithi099 bash[16328]: audit 2024-01-27T23:43:47.911861+0000 mgr.smithi099.hzjdah (mgr.14182) 765 : audit [DBG] from='client.15064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:49.553 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:50.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:50 smithi142 bash[20347]: cluster 2024-01-27T23:43:49.115611+0000 mgr.smithi099.hzjdah (mgr.14182) 766 : 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-01-27T23:43:50.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:50 smithi099 bash[16328]: cluster 2024-01-27T23:43:49.115611+0000 mgr.smithi099.hzjdah (mgr.14182) 766 : 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-01-27T23:43:52.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:52 smithi099 bash[16328]: cluster 2024-01-27T23:43:51.116673+0000 mgr.smithi099.hzjdah (mgr.14182) 767 : 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-01-27T23:43:52.554 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:52 smithi142 bash[20347]: cluster 2024-01-27T23:43:51.116673+0000 mgr.smithi099.hzjdah (mgr.14182) 767 : 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-01-27T23:43:52.818 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:52.819 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:53.433 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:53 smithi099 bash[16328]: audit 2024-01-27T23:43:52.807433+0000 mgr.smithi099.hzjdah (mgr.14182) 768 : audit [DBG] from='client.15068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:53.435 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:53.554 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:53 smithi142 bash[20347]: audit 2024-01-27T23:43:52.807433+0000 mgr.smithi099.hzjdah (mgr.14182) 768 : audit [DBG] from='client.15068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:54.436 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:55.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:54 smithi142 bash[20347]: cluster 2024-01-27T23:43:53.118621+0000 mgr.smithi099.hzjdah (mgr.14182) 769 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:55.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:54 smithi099 bash[16328]: cluster 2024-01-27T23:43:53.118621+0000 mgr.smithi099.hzjdah (mgr.14182) 769 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:57.155 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:56 smithi099 bash[16328]: cluster 2024-01-27T23:43:55.120139+0000 mgr.smithi099.hzjdah (mgr.14182) 770 : cluster [DBG] pgmap v539: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:57.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:56 smithi142 bash[20347]: cluster 2024-01-27T23:43:55.120139+0000 mgr.smithi099.hzjdah (mgr.14182) 770 : cluster [DBG] pgmap v539: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:57.501 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:43:57.502 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:58.117 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:59.118 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:59.130 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:58 smithi099 bash[16328]: cluster 2024-01-27T23:43:57.121397+0000 mgr.smithi099.hzjdah (mgr.14182) 771 : cluster [DBG] pgmap v540: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:59.131 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:43:58 smithi099 bash[16328]: audit 2024-01-27T23:43:57.496311+0000 mgr.smithi099.hzjdah (mgr.14182) 772 : audit [DBG] from='client.15072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:58 smithi142 bash[20347]: cluster 2024-01-27T23:43:57.121397+0000 mgr.smithi099.hzjdah (mgr.14182) 771 : cluster [DBG] pgmap v540: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:43:58 smithi142 bash[20347]: audit 2024-01-27T23:43:57.496311+0000 mgr.smithi099.hzjdah (mgr.14182) 772 : audit [DBG] from='client.15072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:00 smithi142 bash[20347]: cluster 2024-01-27T23:43:59.123034+0000 mgr.smithi099.hzjdah (mgr.14182) 773 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:01.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:00 smithi099 bash[16328]: cluster 2024-01-27T23:43:59.123034+0000 mgr.smithi099.hzjdah (mgr.14182) 773 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:02.215 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:02.215 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:02.806 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:03.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:02 smithi099 bash[16328]: cluster 2024-01-27T23:44:01.124530+0000 mgr.smithi099.hzjdah (mgr.14182) 774 : cluster [DBG] pgmap v542: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:03.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:02 smithi142 bash[20347]: cluster 2024-01-27T23:44:01.124530+0000 mgr.smithi099.hzjdah (mgr.14182) 774 : cluster [DBG] pgmap v542: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:03.807 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:04.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:03 smithi099 bash[16328]: audit 2024-01-27T23:44:02.205679+0000 mgr.smithi099.hzjdah (mgr.14182) 775 : audit [DBG] from='client.15076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:04.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:03 smithi142 bash[20347]: audit 2024-01-27T23:44:02.205679+0000 mgr.smithi099.hzjdah (mgr.14182) 775 : audit [DBG] from='client.15076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:05.229 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:04 smithi099 bash[16328]: cluster 2024-01-27T23:44:03.126475+0000 mgr.smithi099.hzjdah (mgr.14182) 776 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:05.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:04 smithi142 bash[20347]: cluster 2024-01-27T23:44:03.126475+0000 mgr.smithi099.hzjdah (mgr.14182) 776 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:06.972 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:06.972 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:41:58.102853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.zvmvco on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:07.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:06 smithi142 bash[20347]: cluster 2024-01-27T23:44:05.127965+0000 mgr.smithi099.hzjdah (mgr.14182) 777 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:07.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:06 smithi099 bash[16328]: cluster 2024-01-27T23:44:05.127965+0000 mgr.smithi099.hzjdah (mgr.14182) 777 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:07.623 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:07 smithi142 bash[20347]: audit 2024-01-27T23:44:06.961181+0000 mgr.smithi099.hzjdah (mgr.14182) 778 : audit [DBG] from='client.15080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:07 smithi142 bash[20347]: audit 2024-01-27T23:44:07.091674+0000 mon.smithi099 (mon.0) 856 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:44:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:07 smithi142 bash[20347]: audit 2024-01-27T23:44:07.416526+0000 mon.smithi099 (mon.0) 857 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:44:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:07 smithi142 bash[20347]: audit 2024-01-27T23:44:07.418068+0000 mon.smithi099 (mon.0) 858 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:44:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:07 smithi142 bash[20347]: audit 2024-01-27T23:44:07.427144+0000 mon.smithi099 (mon.0) 859 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:44:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:07 smithi142 bash[20347]: audit 2024-01-27T23:44:07.438306+0000 mon.smithi099 (mon.0) 860 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:44:08.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:07 smithi142 bash[20347]: audit 2024-01-27T23:44:07.450403+0000 mon.smithi099 (mon.0) 861 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:44:08.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:07 smithi099 bash[16328]: audit 2024-01-27T23:44:06.961181+0000 mgr.smithi099.hzjdah (mgr.14182) 778 : audit [DBG] from='client.15080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:08.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:07 smithi099 bash[16328]: audit 2024-01-27T23:44:07.091674+0000 mon.smithi099 (mon.0) 856 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:44:08.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:07 smithi099 bash[16328]: audit 2024-01-27T23:44:07.416526+0000 mon.smithi099 (mon.0) 857 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:44:08.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:07 smithi099 bash[16328]: audit 2024-01-27T23:44:07.418068+0000 mon.smithi099 (mon.0) 858 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:44:08.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:07 smithi099 bash[16328]: audit 2024-01-27T23:44:07.427144+0000 mon.smithi099 (mon.0) 859 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:44:08.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:07 smithi099 bash[16328]: audit 2024-01-27T23:44:07.438306+0000 mon.smithi099 (mon.0) 860 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:44:08.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:07 smithi099 bash[16328]: audit 2024-01-27T23:44:07.450403+0000 mon.smithi099 (mon.0) 861 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:44:08.624 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:09.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:08 smithi142 bash[20347]: cluster 2024-01-27T23:44:07.129516+0000 mgr.smithi099.hzjdah (mgr.14182) 779 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:09.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:08 smithi142 bash[20347]: cluster 2024-01-27T23:44:07.428301+0000 mgr.smithi099.hzjdah (mgr.14182) 780 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:09.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:08 smithi142 bash[20347]: cephadm 2024-01-27T23:44:07.453385+0000 mgr.smithi099.hzjdah (mgr.14182) 781 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.qflxns on smithi142 2024-01-27T23:44:09.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:08 smithi142 bash[20347]: cluster 2024-01-27T23:44:07.876602+0000 mon.smithi099 (mon.0) 862 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:44:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:08 smithi142 bash[20347]: cluster 2024-01-27T23:44:07.876686+0000 mon.smithi099 (mon.0) 863 : cluster [INF] Cluster is now healthy 2024-01-27T23:44:09.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:08 smithi099 bash[16328]: cluster 2024-01-27T23:44:07.129516+0000 mgr.smithi099.hzjdah (mgr.14182) 779 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:09.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:08 smithi099 bash[16328]: cluster 2024-01-27T23:44:07.428301+0000 mgr.smithi099.hzjdah (mgr.14182) 780 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:09.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:08 smithi099 bash[16328]: cephadm 2024-01-27T23:44:07.453385+0000 mgr.smithi099.hzjdah (mgr.14182) 781 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.qflxns on smithi142 2024-01-27T23:44:09.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:08 smithi099 bash[16328]: cluster 2024-01-27T23:44:07.876602+0000 mon.smithi099 (mon.0) 862 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:44:09.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:08 smithi099 bash[16328]: cluster 2024-01-27T23:44:07.876686+0000 mon.smithi099 (mon.0) 863 : cluster [INF] Cluster is now healthy 2024-01-27T23:44:11.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:10 smithi142 bash[20347]: cluster 2024-01-27T23:44:09.429672+0000 mgr.smithi099.hzjdah (mgr.14182) 782 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:11.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:10 smithi142 bash[20347]: audit 2024-01-27T23:44:10.387913+0000 mon.smithi099 (mon.0) 864 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:44:11.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:10 smithi099 bash[16328]: cluster 2024-01-27T23:44:09.429672+0000 mgr.smithi099.hzjdah (mgr.14182) 782 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:11.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:10 smithi099 bash[16328]: audit 2024-01-27T23:44:10.387913+0000 mon.smithi099 (mon.0) 864 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:44:12.017 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:12.018 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:02.242113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zkhrjt on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zkhrjt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zkhrjt\nDeploy daemon haproxy.nfs.foo.smithi142.zkhrjt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.076266Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xrfvtn on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xrfvtn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xrfvtn\nDeploy daemon haproxy.nfs.foo.smithi099.xrfvtn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:43:07.078458Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vuepgd on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:12.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:11 smithi142 bash[20347]: audit 2024-01-27T23:44:11.472023+0000 mon.smithi099 (mon.0) 865 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.qflxns"}]: dispatch 2024-01-27T23:44:12.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:11 smithi099 bash[16328]: audit 2024-01-27T23:44:11.472023+0000 mon.smithi099 (mon.0) 865 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.qflxns"}]: dispatch 2024-01-27T23:44:12.704 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: cluster 2024-01-27T23:44:11.430934+0000 mgr.smithi099.hzjdah (mgr.14182) 783 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: cephadm 2024-01-27T23:44:11.470934+0000 mgr.smithi099.hzjdah (mgr.14182) 784 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.qflxns ... 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:13.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.qflxns ... 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: cephadm 2024-01-27T23:44:11.471315+0000 mgr.smithi099.hzjdah (mgr.14182) 785 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: cephadm 2024-01-27T23:44:11.473587+0000 mgr.smithi099.hzjdah (mgr.14182) 786 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:13.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.qflxns ... 2024-01-27T23:44:13.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:13.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:13.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:13.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:12 smithi099 bash[16328]: cephadm 2024-01-27T23:44:11.475713+0000 mgr.smithi099.hzjdah (mgr.14182) 787 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.oqhwlr on smithi099 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: cluster 2024-01-27T23:44:11.430934+0000 mgr.smithi099.hzjdah (mgr.14182) 783 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: cephadm 2024-01-27T23:44:11.470934+0000 mgr.smithi099.hzjdah (mgr.14182) 784 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.qflxns ... 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.qflxns ... 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: cephadm 2024-01-27T23:44:11.471315+0000 mgr.smithi099.hzjdah (mgr.14182) 785 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: cephadm 2024-01-27T23:44:11.473587+0000 mgr.smithi099.hzjdah (mgr.14182) 786 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.qflxns ... 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:13.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:13.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:13.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:12 smithi142 bash[20347]: cephadm 2024-01-27T23:44:11.475713+0000 mgr.smithi099.hzjdah (mgr.14182) 787 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.oqhwlr on smithi099 2024-01-27T23:44:13.705 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:14.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:13 smithi099 bash[16328]: audit 2024-01-27T23:44:12.006626+0000 mgr.smithi099.hzjdah (mgr.14182) 788 : audit [DBG] from='client.15084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:14.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:13 smithi142 bash[20347]: audit 2024-01-27T23:44:12.006626+0000 mgr.smithi099.hzjdah (mgr.14182) 788 : audit [DBG] from='client.15084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:15.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:14 smithi099 bash[16328]: cluster 2024-01-27T23:44:13.432639+0000 mgr.smithi099.hzjdah (mgr.14182) 789 : cluster [DBG] pgmap v549: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:15.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:14 smithi142 bash[20347]: cluster 2024-01-27T23:44:13.432639+0000 mgr.smithi099.hzjdah (mgr.14182) 789 : cluster [DBG] pgmap v549: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:16.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:15 smithi142 bash[20347]: audit 2024-01-27T23:44:15.331103+0000 mon.smithi099 (mon.0) 866 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.oqhwlr"}]: dispatch 2024-01-27T23:44:16.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:15 smithi099 bash[16328]: audit 2024-01-27T23:44:15.331103+0000 mon.smithi099 (mon.0) 866 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.oqhwlr"}]: dispatch 2024-01-27T23:44:17.116 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:17.116 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: cephadm 2024-01-27T23:44:15.330302+0000 mgr.smithi099.hzjdah (mgr.14182) 790 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.oqhwlr ... 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:17.188 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.oqhwlr ... 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.189 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: cephadm 2024-01-27T23:44:15.330557+0000 mgr.smithi099.hzjdah (mgr.14182) 791 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: cephadm 2024-01-27T23:44:15.332300+0000 mgr.smithi099.hzjdah (mgr.14182) 792 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.oqhwlr ... 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:17.190 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:17.191 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:17.191 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.191 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: cephadm 2024-01-27T23:44:15.334306+0000 mgr.smithi099.hzjdah (mgr.14182) 793 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:44:17.191 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: cephadm 2024-01-27T23:44:15.336009+0000 mgr.smithi099.hzjdah (mgr.14182) 794 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:44:17.191 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: cluster 2024-01-27T23:44:15.337500+0000 mgr.smithi099.hzjdah (mgr.14182) 795 : cluster [DBG] pgmap v550: 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-01-27T23:44:17.191 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:16 smithi099 bash[16328]: cluster 2024-01-27T23:44:15.918652+0000 mon.smithi099 (mon.0) 867 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: cephadm 2024-01-27T23:44:15.330302+0000 mgr.smithi099.hzjdah (mgr.14182) 790 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.oqhwlr ... 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.oqhwlr ... 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:17.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: cephadm 2024-01-27T23:44:15.330557+0000 mgr.smithi099.hzjdah (mgr.14182) 791 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: cephadm 2024-01-27T23:44:15.332300+0000 mgr.smithi099.hzjdah (mgr.14182) 792 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.oqhwlr ... 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:44:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:44:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: cephadm 2024-01-27T23:44:15.334306+0000 mgr.smithi099.hzjdah (mgr.14182) 793 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:44:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: cephadm 2024-01-27T23:44:15.336009+0000 mgr.smithi099.hzjdah (mgr.14182) 794 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:44:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: cluster 2024-01-27T23:44:15.337500+0000 mgr.smithi099.hzjdah (mgr.14182) 795 : cluster [DBG] pgmap v550: 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-01-27T23:44:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:16 smithi142 bash[20347]: cluster 2024-01-27T23:44:15.918652+0000 mon.smithi099 (mon.0) 867 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:44:17.764 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:18.765 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:19.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:18 smithi099 bash[16328]: audit 2024-01-27T23:44:17.113150+0000 mgr.smithi099.hzjdah (mgr.14182) 796 : audit [DBG] from='client.15088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:19.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:18 smithi099 bash[16328]: cluster 2024-01-27T23:44:17.339186+0000 mgr.smithi099.hzjdah (mgr.14182) 797 : cluster [DBG] pgmap v551: 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-01-27T23:44:19.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:18 smithi099 bash[16328]: audit 2024-01-27T23:44:18.593055+0000 mon.smithi099 (mon.0) 868 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:44:19.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:18 smithi142 bash[20347]: audit 2024-01-27T23:44:17.113150+0000 mgr.smithi099.hzjdah (mgr.14182) 796 : audit [DBG] from='client.15088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:19.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:18 smithi142 bash[20347]: cluster 2024-01-27T23:44:17.339186+0000 mgr.smithi099.hzjdah (mgr.14182) 797 : cluster [DBG] pgmap v551: 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-01-27T23:44:19.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:18 smithi142 bash[20347]: audit 2024-01-27T23:44:18.593055+0000 mon.smithi099 (mon.0) 868 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:44:20.113 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:20 smithi099 bash[16328]: cluster 2024-01-27T23:44:19.340800+0000 mgr.smithi099.hzjdah (mgr.14182) 798 : 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-01-27T23:44:20.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:20 smithi142 bash[20347]: cluster 2024-01-27T23:44:19.340800+0000 mgr.smithi099.hzjdah (mgr.14182) 798 : 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-01-27T23:44:21.854 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:21.855 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:22.494 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:22.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:22 smithi142 bash[20347]: cluster 2024-01-27T23:44:21.342409+0000 mgr.smithi099.hzjdah (mgr.14182) 799 : 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-01-27T23:44:22.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:22 smithi142 bash[20347]: audit 2024-01-27T23:44:21.849099+0000 mgr.smithi099.hzjdah (mgr.14182) 800 : audit [DBG] from='client.15092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:22.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:22 smithi099 bash[16328]: cluster 2024-01-27T23:44:21.342409+0000 mgr.smithi099.hzjdah (mgr.14182) 799 : 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-01-27T23:44:22.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:22 smithi099 bash[16328]: audit 2024-01-27T23:44:21.849099+0000 mgr.smithi099.hzjdah (mgr.14182) 800 : audit [DBG] from='client.15092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:23.495 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:24.945 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:24 smithi099 bash[16328]: cluster 2024-01-27T23:44:23.344328+0000 mgr.smithi099.hzjdah (mgr.14182) 801 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.4 KiB/s rd, 0 B/s wr, 7 op/s 2024-01-27T23:44:25.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:24 smithi142 bash[20347]: cluster 2024-01-27T23:44:23.344328+0000 mgr.smithi099.hzjdah (mgr.14182) 801 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.4 KiB/s rd, 0 B/s wr, 7 op/s 2024-01-27T23:44:26.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:26 smithi142 bash[20347]: cluster 2024-01-27T23:44:25.345931+0000 mgr.smithi099.hzjdah (mgr.14182) 802 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 18 KiB/s rd, 0 B/s wr, 29 op/s 2024-01-27T23:44:26.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:26 smithi142 bash[20347]: audit 2024-01-27T23:44:25.387977+0000 mon.smithi099 (mon.0) 869 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:44:26.815 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:26.815 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:26.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:26 smithi099 bash[16328]: cluster 2024-01-27T23:44:25.345931+0000 mgr.smithi099.hzjdah (mgr.14182) 802 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 18 KiB/s rd, 0 B/s wr, 29 op/s 2024-01-27T23:44:26.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:26 smithi099 bash[16328]: audit 2024-01-27T23:44:25.387977+0000 mon.smithi099 (mon.0) 869 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:44:27.442 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:27.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:27 smithi142 bash[20347]: audit 2024-01-27T23:44:26.806624+0000 mgr.smithi099.hzjdah (mgr.14182) 803 : audit [DBG] from='client.15096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:27.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:27 smithi099 bash[16328]: audit 2024-01-27T23:44:26.806624+0000 mgr.smithi099.hzjdah (mgr.14182) 803 : audit [DBG] from='client.15096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:28.444 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:28.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:28 smithi142 bash[20347]: cluster 2024-01-27T23:44:27.347754+0000 mgr.smithi099.hzjdah (mgr.14182) 804 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 31 KiB/s rd, 0 B/s wr, 51 op/s 2024-01-27T23:44:28.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:28 smithi099 bash[16328]: cluster 2024-01-27T23:44:27.347754+0000 mgr.smithi099.hzjdah (mgr.14182) 804 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 31 KiB/s rd, 0 B/s wr, 51 op/s 2024-01-27T23:44:31.158 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:30 smithi099 bash[16328]: cluster 2024-01-27T23:44:29.349477+0000 mgr.smithi099.hzjdah (mgr.14182) 805 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-27T23:44:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:30 smithi142 bash[20347]: cluster 2024-01-27T23:44:29.349477+0000 mgr.smithi099.hzjdah (mgr.14182) 805 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-27T23:44:31.602 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:31.602 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:32.268 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:33.269 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:33.281 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:32 smithi099 bash[16328]: cluster 2024-01-27T23:44:31.351089+0000 mgr.smithi099.hzjdah (mgr.14182) 806 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-27T23:44:33.281 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:32 smithi099 bash[16328]: audit 2024-01-27T23:44:31.594516+0000 mgr.smithi099.hzjdah (mgr.14182) 807 : audit [DBG] from='client.15100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:33.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:32 smithi142 bash[20347]: cluster 2024-01-27T23:44:31.351089+0000 mgr.smithi099.hzjdah (mgr.14182) 806 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-27T23:44:33.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:32 smithi142 bash[20347]: audit 2024-01-27T23:44:31.594516+0000 mgr.smithi099.hzjdah (mgr.14182) 807 : audit [DBG] from='client.15100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:35.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:34 smithi099 bash[16328]: cluster 2024-01-27T23:44:33.353081+0000 mgr.smithi099.hzjdah (mgr.14182) 808 : cluster [DBG] pgmap v559: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-27T23:44:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:34 smithi142 bash[20347]: cluster 2024-01-27T23:44:33.353081+0000 mgr.smithi099.hzjdah (mgr.14182) 808 : cluster [DBG] pgmap v559: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 0 B/s wr, 60 op/s 2024-01-27T23:44:36.408 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:36.408 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:37.005 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:37.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:36 smithi142 bash[20347]: cluster 2024-01-27T23:44:35.354691+0000 mgr.smithi099.hzjdah (mgr.14182) 809 : cluster [DBG] pgmap v560: 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-01-27T23:44:37.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:36 smithi099 bash[16328]: cluster 2024-01-27T23:44:35.354691+0000 mgr.smithi099.hzjdah (mgr.14182) 809 : cluster [DBG] pgmap v560: 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-01-27T23:44:38.006 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:38.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:37 smithi142 bash[20347]: audit 2024-01-27T23:44:36.400211+0000 mgr.smithi099.hzjdah (mgr.14182) 810 : audit [DBG] from='client.15104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:38.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:37 smithi099 bash[16328]: audit 2024-01-27T23:44:36.400211+0000 mgr.smithi099.hzjdah (mgr.14182) 810 : audit [DBG] from='client.15104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:39.151 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:38 smithi099 bash[16328]: cluster 2024-01-27T23:44:37.356459+0000 mgr.smithi099.hzjdah (mgr.14182) 811 : cluster [DBG] pgmap v561: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 19 KiB/s rd, 0 B/s wr, 31 op/s 2024-01-27T23:44:39.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:38 smithi142 bash[20347]: cluster 2024-01-27T23:44:37.356459+0000 mgr.smithi099.hzjdah (mgr.14182) 811 : cluster [DBG] pgmap v561: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 19 KiB/s rd, 0 B/s wr, 31 op/s 2024-01-27T23:44:41.080 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:41.081 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:41.153 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:40 smithi099 bash[16328]: cluster 2024-01-27T23:44:39.357983+0000 mgr.smithi099.hzjdah (mgr.14182) 812 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.8 KiB/s rd, 0 B/s wr, 9 op/s 2024-01-27T23:44:41.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:40 smithi142 bash[20347]: cluster 2024-01-27T23:44:39.357983+0000 mgr.smithi099.hzjdah (mgr.14182) 812 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.8 KiB/s rd, 0 B/s wr, 9 op/s 2024-01-27T23:44:41.778 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:42.779 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:42 smithi099 bash[16328]: audit 2024-01-27T23:44:41.069894+0000 mgr.smithi099.hzjdah (mgr.14182) 813 : audit [DBG] from='client.15108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:42 smithi099 bash[16328]: cluster 2024-01-27T23:44:41.359484+0000 mgr.smithi099.hzjdah (mgr.14182) 814 : 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-01-27T23:44:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:42 smithi142 bash[20347]: audit 2024-01-27T23:44:41.069894+0000 mgr.smithi099.hzjdah (mgr.14182) 813 : audit [DBG] from='client.15108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:42 smithi142 bash[20347]: cluster 2024-01-27T23:44:41.359484+0000 mgr.smithi099.hzjdah (mgr.14182) 814 : 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-01-27T23:44:45.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:44 smithi142 bash[20347]: cluster 2024-01-27T23:44:43.361365+0000 mgr.smithi099.hzjdah (mgr.14182) 815 : 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-01-27T23:44:45.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:44 smithi099 bash[16328]: cluster 2024-01-27T23:44:43.361365+0000 mgr.smithi099.hzjdah (mgr.14182) 815 : 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-01-27T23:44:46.055 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:46.055 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:46.687 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:47.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:46 smithi099 bash[16328]: cluster 2024-01-27T23:44:45.362756+0000 mgr.smithi099.hzjdah (mgr.14182) 816 : 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-01-27T23:44:47.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:46 smithi142 bash[20347]: cluster 2024-01-27T23:44:45.362756+0000 mgr.smithi099.hzjdah (mgr.14182) 816 : 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-01-27T23:44:47.688 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:48.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:47 smithi099 bash[16328]: audit 2024-01-27T23:44:46.049679+0000 mgr.smithi099.hzjdah (mgr.14182) 817 : audit [DBG] from='client.15112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:47 smithi142 bash[20347]: audit 2024-01-27T23:44:46.049679+0000 mgr.smithi099.hzjdah (mgr.14182) 817 : audit [DBG] from='client.15112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:49.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:48 smithi099 bash[16328]: cluster 2024-01-27T23:44:47.364511+0000 mgr.smithi099.hzjdah (mgr.14182) 818 : 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-01-27T23:44:49.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:48 smithi142 bash[20347]: cluster 2024-01-27T23:44:47.364511+0000 mgr.smithi099.hzjdah (mgr.14182) 818 : 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-01-27T23:44:50.938 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:50.939 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:50 smithi142 bash[20347]: cluster 2024-01-27T23:44:49.366223+0000 mgr.smithi099.hzjdah (mgr.14182) 819 : 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-01-27T23:44:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:50 smithi099 bash[16328]: cluster 2024-01-27T23:44:49.366223+0000 mgr.smithi099.hzjdah (mgr.14182) 819 : 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-01-27T23:44:51.623 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:52.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:51 smithi142 bash[20347]: audit 2024-01-27T23:44:50.930912+0000 mgr.smithi099.hzjdah (mgr.14182) 820 : audit [DBG] from='client.15116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:52.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:51 smithi099 bash[16328]: audit 2024-01-27T23:44:50.930912+0000 mgr.smithi099.hzjdah (mgr.14182) 820 : audit [DBG] from='client.15116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:52.624 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:53.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:52 smithi142 bash[20347]: cluster 2024-01-27T23:44:51.367739+0000 mgr.smithi099.hzjdah (mgr.14182) 821 : 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-01-27T23:44:53.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:52 smithi099 bash[16328]: cluster 2024-01-27T23:44:51.367739+0000 mgr.smithi099.hzjdah (mgr.14182) 821 : 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-01-27T23:44:55.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:54 smithi142 bash[20347]: cluster 2024-01-27T23:44:53.369743+0000 mgr.smithi099.hzjdah (mgr.14182) 822 : 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-01-27T23:44:55.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:54 smithi099 bash[16328]: cluster 2024-01-27T23:44:53.369743+0000 mgr.smithi099.hzjdah (mgr.14182) 822 : 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-01-27T23:44:55.997 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:44:55.997 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:56.659 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:57.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:56 smithi142 bash[20347]: cluster 2024-01-27T23:44:55.371464+0000 mgr.smithi099.hzjdah (mgr.14182) 823 : 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-01-27T23:44:57.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:56 smithi099 bash[16328]: cluster 2024-01-27T23:44:55.371464+0000 mgr.smithi099.hzjdah (mgr.14182) 823 : 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-01-27T23:44:57.660 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:58.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:57 smithi142 bash[20347]: audit 2024-01-27T23:44:55.994041+0000 mgr.smithi099.hzjdah (mgr.14182) 824 : audit [DBG] from='client.15120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:58.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:57 smithi099 bash[16328]: audit 2024-01-27T23:44:55.994041+0000 mgr.smithi099.hzjdah (mgr.14182) 824 : audit [DBG] from='client.15120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:59.156 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:44:58 smithi099 bash[16328]: cluster 2024-01-27T23:44:57.373258+0000 mgr.smithi099.hzjdah (mgr.14182) 825 : 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-01-27T23:44:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:44:58 smithi142 bash[20347]: cluster 2024-01-27T23:44:57.373258+0000 mgr.smithi099.hzjdah (mgr.14182) 825 : 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-01-27T23:45:01.102 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:01.102 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:00 smithi142 bash[20347]: cluster 2024-01-27T23:44:59.374955+0000 mgr.smithi099.hzjdah (mgr.14182) 826 : 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-01-27T23:45:01.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:00 smithi099 bash[16328]: cluster 2024-01-27T23:44:59.374955+0000 mgr.smithi099.hzjdah (mgr.14182) 826 : 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-01-27T23:45:01.848 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:02.849 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:03.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:02 smithi142 bash[20347]: audit 2024-01-27T23:45:01.090505+0000 mgr.smithi099.hzjdah (mgr.14182) 827 : audit [DBG] from='client.15124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:03.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:02 smithi142 bash[20347]: cluster 2024-01-27T23:45:01.376540+0000 mgr.smithi099.hzjdah (mgr.14182) 828 : 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-01-27T23:45:03.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:02 smithi099 bash[16328]: audit 2024-01-27T23:45:01.090505+0000 mgr.smithi099.hzjdah (mgr.14182) 827 : audit [DBG] from='client.15124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:03.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:02 smithi099 bash[16328]: cluster 2024-01-27T23:45:01.376540+0000 mgr.smithi099.hzjdah (mgr.14182) 828 : 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-01-27T23:45:05.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:04 smithi142 bash[20347]: cluster 2024-01-27T23:45:03.378688+0000 mgr.smithi099.hzjdah (mgr.14182) 829 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 852 B/s rd, 0 B/s wr, 1 op/s 2024-01-27T23:45:05.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:04 smithi099 bash[16328]: cluster 2024-01-27T23:45:03.378688+0000 mgr.smithi099.hzjdah (mgr.14182) 829 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 852 B/s rd, 0 B/s wr, 1 op/s 2024-01-27T23:45:06.037 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:06.037 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:06.593 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:07.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:06 smithi142 bash[20347]: cluster 2024-01-27T23:45:05.380675+0000 mgr.smithi099.hzjdah (mgr.14182) 830 : cluster [DBG] pgmap v575: 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-01-27T23:45:07.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:06 smithi099 bash[16328]: cluster 2024-01-27T23:45:05.380675+0000 mgr.smithi099.hzjdah (mgr.14182) 830 : cluster [DBG] pgmap v575: 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-01-27T23:45:07.594 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:07 smithi142 bash[20347]: audit 2024-01-27T23:45:06.033965+0000 mgr.smithi099.hzjdah (mgr.14182) 831 : audit [DBG] from='client.15128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:08.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:07 smithi099 bash[16328]: audit 2024-01-27T23:45:06.033965+0000 mgr.smithi099.hzjdah (mgr.14182) 831 : audit [DBG] from='client.15128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:09.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:08 smithi142 bash[20347]: cluster 2024-01-27T23:45:07.382523+0000 mgr.smithi099.hzjdah (mgr.14182) 832 : cluster [DBG] pgmap v576: 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-01-27T23:45:09.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:08 smithi099 bash[16328]: cluster 2024-01-27T23:45:07.382523+0000 mgr.smithi099.hzjdah (mgr.14182) 832 : cluster [DBG] pgmap v576: 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-01-27T23:45:10.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:10 smithi142 bash[20347]: cluster 2024-01-27T23:45:09.384185+0000 mgr.smithi099.hzjdah (mgr.14182) 833 : cluster [DBG] pgmap v577: 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-01-27T23:45:10.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:10 smithi099 bash[16328]: cluster 2024-01-27T23:45:09.384185+0000 mgr.smithi099.hzjdah (mgr.14182) 833 : cluster [DBG] pgmap v577: 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-01-27T23:45:10.826 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:10.826 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:11.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:11 smithi142 bash[20347]: audit 2024-01-27T23:45:10.818105+0000 mgr.smithi099.hzjdah (mgr.14182) 834 : audit [DBG] from='client.15132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:11.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:11 smithi099 bash[16328]: audit 2024-01-27T23:45:10.818105+0000 mgr.smithi099.hzjdah (mgr.14182) 834 : audit [DBG] from='client.15132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:11.442 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:12.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:12 smithi142 bash[20347]: cluster 2024-01-27T23:45:11.385761+0000 mgr.smithi099.hzjdah (mgr.14182) 835 : cluster [DBG] pgmap v578: 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-01-27T23:45:12.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:12 smithi099 bash[16328]: cluster 2024-01-27T23:45:11.385761+0000 mgr.smithi099.hzjdah (mgr.14182) 835 : cluster [DBG] pgmap v578: 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-01-27T23:45:12.443 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:15.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:14 smithi099 bash[16328]: cluster 2024-01-27T23:45:13.388100+0000 mgr.smithi099.hzjdah (mgr.14182) 836 : cluster [DBG] pgmap v579: 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-01-27T23:45:15.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:14 smithi142 bash[20347]: cluster 2024-01-27T23:45:13.388100+0000 mgr.smithi099.hzjdah (mgr.14182) 836 : cluster [DBG] pgmap v579: 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-01-27T23:45:15.702 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:15.702 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:43:07.080263Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.cyxvrf on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:16.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:15 smithi099 bash[16328]: audit 2024-01-27T23:45:15.340083+0000 mon.smithi099 (mon.0) 870 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:45:16.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:15 smithi099 bash[16328]: audit 2024-01-27T23:45:15.656816+0000 mon.smithi099 (mon.0) 871 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:45:16.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:15 smithi099 bash[16328]: audit 2024-01-27T23:45:15.658328+0000 mon.smithi099 (mon.0) 872 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:45:16.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:15 smithi099 bash[16328]: audit 2024-01-27T23:45:15.665740+0000 mon.smithi099 (mon.0) 873 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:45:16.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:15 smithi099 bash[16328]: audit 2024-01-27T23:45:15.674179+0000 mon.smithi099 (mon.0) 874 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:45:16.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:15 smithi099 bash[16328]: audit 2024-01-27T23:45:15.687481+0000 mon.smithi099 (mon.0) 875 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:45:16.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:15 smithi142 bash[20347]: audit 2024-01-27T23:45:15.340083+0000 mon.smithi099 (mon.0) 870 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:45:16.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:15 smithi142 bash[20347]: audit 2024-01-27T23:45:15.656816+0000 mon.smithi099 (mon.0) 871 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:45:16.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:15 smithi142 bash[20347]: audit 2024-01-27T23:45:15.658328+0000 mon.smithi099 (mon.0) 872 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:45:16.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:15 smithi142 bash[20347]: audit 2024-01-27T23:45:15.665740+0000 mon.smithi099 (mon.0) 873 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:45:16.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:15 smithi142 bash[20347]: audit 2024-01-27T23:45:15.674179+0000 mon.smithi099 (mon.0) 874 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:45:16.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:15 smithi142 bash[20347]: audit 2024-01-27T23:45:15.687481+0000 mon.smithi099 (mon.0) 875 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:45:16.351 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:17.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:16 smithi142 bash[20347]: cluster 2024-01-27T23:45:15.389589+0000 mgr.smithi099.hzjdah (mgr.14182) 837 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.4 KiB/s rd, 0 B/s wr, 5 op/s 2024-01-27T23:45:17.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:16 smithi142 bash[20347]: cluster 2024-01-27T23:45:15.666650+0000 mgr.smithi099.hzjdah (mgr.14182) 838 : cluster [DBG] pgmap v581: 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-01-27T23:45:17.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:16 smithi142 bash[20347]: cephadm 2024-01-27T23:45:15.690648+0000 mgr.smithi099.hzjdah (mgr.14182) 839 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.rbzzqz on smithi142 2024-01-27T23:45:17.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:16 smithi142 bash[20347]: audit 2024-01-27T23:45:15.694886+0000 mgr.smithi099.hzjdah (mgr.14182) 840 : audit [DBG] from='client.15136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:16 smithi142 bash[20347]: cluster 2024-01-27T23:45:15.866772+0000 mon.smithi099 (mon.0) 876 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:45:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:16 smithi142 bash[20347]: cluster 2024-01-27T23:45:15.866848+0000 mon.smithi099 (mon.0) 877 : cluster [INF] Cluster is now healthy 2024-01-27T23:45:17.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:16 smithi099 bash[16328]: cluster 2024-01-27T23:45:15.389589+0000 mgr.smithi099.hzjdah (mgr.14182) 837 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.4 KiB/s rd, 0 B/s wr, 5 op/s 2024-01-27T23:45:17.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:16 smithi099 bash[16328]: cluster 2024-01-27T23:45:15.666650+0000 mgr.smithi099.hzjdah (mgr.14182) 838 : cluster [DBG] pgmap v581: 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-01-27T23:45:17.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:16 smithi099 bash[16328]: cephadm 2024-01-27T23:45:15.690648+0000 mgr.smithi099.hzjdah (mgr.14182) 839 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.rbzzqz on smithi142 2024-01-27T23:45:17.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:16 smithi099 bash[16328]: audit 2024-01-27T23:45:15.694886+0000 mgr.smithi099.hzjdah (mgr.14182) 840 : audit [DBG] from='client.15136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:17.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:16 smithi099 bash[16328]: cluster 2024-01-27T23:45:15.866772+0000 mon.smithi099 (mon.0) 876 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:45:17.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:16 smithi099 bash[16328]: cluster 2024-01-27T23:45:15.866848+0000 mon.smithi099 (mon.0) 877 : cluster [INF] Cluster is now healthy 2024-01-27T23:45:17.353 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:19.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:18 smithi099 bash[16328]: cluster 2024-01-27T23:45:17.668289+0000 mgr.smithi099.hzjdah (mgr.14182) 841 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:45:19.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:18 smithi142 bash[20347]: cluster 2024-01-27T23:45:17.668289+0000 mgr.smithi099.hzjdah (mgr.14182) 841 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:45:20.195 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:19 smithi099 bash[16328]: audit 2024-01-27T23:45:19.636091+0000 mon.smithi099 (mon.0) 878 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.rbzzqz"}]: dispatch 2024-01-27T23:45:20.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:19 smithi142 bash[20347]: audit 2024-01-27T23:45:19.636091+0000 mon.smithi099 (mon.0) 878 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.rbzzqz"}]: dispatch 2024-01-27T23:45:20.555 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:20.555 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:11.473415Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qflxns on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qflxns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qflxns\nDeploy daemon haproxy.nfs.foo.smithi142.qflxns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.332142Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.oqhwlr on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-oqhwlr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.oqhwlr\nDeploy daemon haproxy.nfs.foo.smithi099.oqhwlr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:44:15.334209Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lenunx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:21.240 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: cephadm 2024-01-27T23:45:19.634962+0000 mgr.smithi099.hzjdah (mgr.14182) 842 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.240 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:21.240 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.240 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.240 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:21.240 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.240 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.rbzzqz ... 2024-01-27T23:45:21.240 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:21.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.242 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.rbzzqz ... 2024-01-27T23:45:21.242 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.242 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:21.243 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: cephadm 2024-01-27T23:45:19.635432+0000 mgr.smithi099.hzjdah (mgr.14182) 843 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: cephadm 2024-01-27T23:45:19.637793+0000 mgr.smithi099.hzjdah (mgr.14182) 844 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.rbzzqz ... 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:21.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:21.244 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:21.244 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.244 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: cephadm 2024-01-27T23:45:19.642492+0000 mgr.smithi099.hzjdah (mgr.14182) 845 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.tqvbql on smithi099 2024-01-27T23:45:21.244 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:20 smithi099 bash[16328]: cluster 2024-01-27T23:45:19.669423+0000 mgr.smithi099.hzjdah (mgr.14182) 846 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: cephadm 2024-01-27T23:45:19.634962+0000 mgr.smithi099.hzjdah (mgr.14182) 842 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.rbzzqz ... 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:45:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.rbzzqz ... 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: cephadm 2024-01-27T23:45:19.635432+0000 mgr.smithi099.hzjdah (mgr.14182) 843 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: cephadm 2024-01-27T23:45:19.637793+0000 mgr.smithi099.hzjdah (mgr.14182) 844 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.rbzzqz ... 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: cephadm 2024-01-27T23:45:19.642492+0000 mgr.smithi099.hzjdah (mgr.14182) 845 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.tqvbql on smithi099 2024-01-27T23:45:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:20 smithi142 bash[20347]: cluster 2024-01-27T23:45:19.669423+0000 mgr.smithi099.hzjdah (mgr.14182) 846 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:45:22.244 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:22.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:21 smithi099 bash[16328]: audit 2024-01-27T23:45:20.548637+0000 mgr.smithi099.hzjdah (mgr.14182) 847 : audit [DBG] from='client.15140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:21 smithi142 bash[20347]: audit 2024-01-27T23:45:20.548637+0000 mgr.smithi099.hzjdah (mgr.14182) 847 : audit [DBG] from='client.15140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:23.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:22 smithi142 bash[20347]: cluster 2024-01-27T23:45:21.670825+0000 mgr.smithi099.hzjdah (mgr.14182) 848 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:45:23.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:22 smithi099 bash[16328]: cluster 2024-01-27T23:45:21.670825+0000 mgr.smithi099.hzjdah (mgr.14182) 848 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:45:25.248 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: cluster 2024-01-27T23:45:23.671974+0000 mgr.smithi099.hzjdah (mgr.14182) 849 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: cephadm 2024-01-27T23:45:23.879771+0000 mgr.smithi099.hzjdah (mgr.14182) 850 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.tqvbql ... 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:45:25.249 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.tqvbql ... 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:25.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:25.251 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.251 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: cephadm 2024-01-27T23:45:23.880093+0000 mgr.smithi099.hzjdah (mgr.14182) 851 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.251 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: audit 2024-01-27T23:45:23.880632+0000 mon.smithi099 (mon.0) 879 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.tqvbql"}]: dispatch 2024-01-27T23:45:25.251 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: cephadm 2024-01-27T23:45:23.881877+0000 mgr.smithi099.hzjdah (mgr.14182) 852 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.251 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:25.251 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.252 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.252 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:45:25.252 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.252 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.tqvbql ... 2024-01-27T23:45:25.252 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.252 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:25.252 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:25.253 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:25.253 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.253 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: cephadm 2024-01-27T23:45:23.885412+0000 mgr.smithi099.hzjdah (mgr.14182) 853 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:45:25.253 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: cephadm 2024-01-27T23:45:23.888767+0000 mgr.smithi099.hzjdah (mgr.14182) 854 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:45:25.253 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: cluster 2024-01-27T23:45:23.889860+0000 mgr.smithi099.hzjdah (mgr.14182) 855 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:45:25.253 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:24 smithi099 bash[16328]: cluster 2024-01-27T23:45:23.906405+0000 mon.smithi099 (mon.0) 880 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:45:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: cluster 2024-01-27T23:45:23.671974+0000 mgr.smithi099.hzjdah (mgr.14182) 849 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:45:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: cephadm 2024-01-27T23:45:23.879771+0000 mgr.smithi099.hzjdah (mgr.14182) 850 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.tqvbql ... 2024-01-27T23:45:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.tqvbql ... 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: cephadm 2024-01-27T23:45:23.880093+0000 mgr.smithi099.hzjdah (mgr.14182) 851 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: audit 2024-01-27T23:45:23.880632+0000 mon.smithi099 (mon.0) 879 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.tqvbql"}]: dispatch 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: cephadm 2024-01-27T23:45:23.881877+0000 mgr.smithi099.hzjdah (mgr.14182) 852 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.tqvbql ... 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:45:25.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:45:25.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:45:25.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:45:25.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: cephadm 2024-01-27T23:45:23.885412+0000 mgr.smithi099.hzjdah (mgr.14182) 853 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:45:25.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: cephadm 2024-01-27T23:45:23.888767+0000 mgr.smithi099.hzjdah (mgr.14182) 854 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:45:25.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: cluster 2024-01-27T23:45:23.889860+0000 mgr.smithi099.hzjdah (mgr.14182) 855 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:45:25.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:24 smithi142 bash[20347]: cluster 2024-01-27T23:45:23.906405+0000 mon.smithi099 (mon.0) 880 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:45:25.685 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:25.685 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:26.362 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:27.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:26 smithi142 bash[20347]: audit 2024-01-27T23:45:25.674663+0000 mgr.smithi099.hzjdah (mgr.14182) 856 : audit [DBG] from='client.15144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:27.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:26 smithi142 bash[20347]: cluster 2024-01-27T23:45:25.891355+0000 mgr.smithi099.hzjdah (mgr.14182) 857 : cluster [DBG] pgmap v587: 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-01-27T23:45:27.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:26 smithi099 bash[16328]: audit 2024-01-27T23:45:25.674663+0000 mgr.smithi099.hzjdah (mgr.14182) 856 : audit [DBG] from='client.15144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:27.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:26 smithi099 bash[16328]: cluster 2024-01-27T23:45:25.891355+0000 mgr.smithi099.hzjdah (mgr.14182) 857 : cluster [DBG] pgmap v587: 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-01-27T23:45:27.363 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:29.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:28 smithi142 bash[20347]: cluster 2024-01-27T23:45:27.893567+0000 mgr.smithi099.hzjdah (mgr.14182) 858 : cluster [DBG] pgmap v588: 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-01-27T23:45:29.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:28 smithi142 bash[20347]: audit 2024-01-27T23:45:28.654274+0000 mon.smithi099 (mon.0) 881 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:45:29.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:28 smithi099 bash[16328]: cluster 2024-01-27T23:45:27.893567+0000 mgr.smithi099.hzjdah (mgr.14182) 858 : cluster [DBG] pgmap v588: 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-01-27T23:45:29.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:28 smithi099 bash[16328]: audit 2024-01-27T23:45:28.654274+0000 mon.smithi099 (mon.0) 881 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:45:30.598 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:30.598 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:31.198 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:31.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:30 smithi142 bash[20347]: cluster 2024-01-27T23:45:29.895085+0000 mgr.smithi099.hzjdah (mgr.14182) 859 : cluster [DBG] pgmap v589: 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-01-27T23:45:31.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:30 smithi099 bash[16328]: cluster 2024-01-27T23:45:29.895085+0000 mgr.smithi099.hzjdah (mgr.14182) 859 : cluster [DBG] pgmap v589: 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-01-27T23:45:32.200 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:32.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:31 smithi142 bash[20347]: audit 2024-01-27T23:45:30.589368+0000 mgr.smithi099.hzjdah (mgr.14182) 860 : audit [DBG] from='client.15148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:32.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:31 smithi099 bash[16328]: audit 2024-01-27T23:45:30.589368+0000 mgr.smithi099.hzjdah (mgr.14182) 860 : audit [DBG] from='client.15148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:33.258 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:32 smithi099 bash[16328]: cluster 2024-01-27T23:45:31.896757+0000 mgr.smithi099.hzjdah (mgr.14182) 861 : cluster [DBG] pgmap v590: 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-01-27T23:45:33.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:32 smithi142 bash[20347]: cluster 2024-01-27T23:45:31.896757+0000 mgr.smithi099.hzjdah (mgr.14182) 861 : cluster [DBG] pgmap v590: 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-01-27T23:45:35.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:34 smithi099 bash[16328]: cluster 2024-01-27T23:45:33.898452+0000 mgr.smithi099.hzjdah (mgr.14182) 862 : cluster [DBG] pgmap v591: 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-01-27T23:45:35.253 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:35.253 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:35.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:34 smithi142 bash[20347]: cluster 2024-01-27T23:45:33.898452+0000 mgr.smithi099.hzjdah (mgr.14182) 862 : cluster [DBG] pgmap v591: 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-01-27T23:45:35.873 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:36.874 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:37.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:36 smithi142 bash[20347]: audit 2024-01-27T23:45:35.244595+0000 mgr.smithi099.hzjdah (mgr.14182) 863 : audit [DBG] from='client.15152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:37.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:36 smithi142 bash[20347]: cluster 2024-01-27T23:45:35.899930+0000 mgr.smithi099.hzjdah (mgr.14182) 864 : cluster [DBG] pgmap v592: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:37.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:36 smithi099 bash[16328]: audit 2024-01-27T23:45:35.244595+0000 mgr.smithi099.hzjdah (mgr.14182) 863 : audit [DBG] from='client.15152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:37.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:36 smithi099 bash[16328]: cluster 2024-01-27T23:45:35.899930+0000 mgr.smithi099.hzjdah (mgr.14182) 864 : cluster [DBG] pgmap v592: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:39.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:38 smithi142 bash[20347]: cluster 2024-01-27T23:45:37.901966+0000 mgr.smithi099.hzjdah (mgr.14182) 865 : 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-01-27T23:45:39.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:38 smithi099 bash[16328]: cluster 2024-01-27T23:45:37.901966+0000 mgr.smithi099.hzjdah (mgr.14182) 865 : 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-01-27T23:45:40.032 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:40.032 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:40.715 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:41.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:40 smithi142 bash[20347]: cluster 2024-01-27T23:45:39.903408+0000 mgr.smithi099.hzjdah (mgr.14182) 866 : 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-01-27T23:45:41.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:40 smithi099 bash[16328]: cluster 2024-01-27T23:45:39.903408+0000 mgr.smithi099.hzjdah (mgr.14182) 866 : 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-01-27T23:45:41.716 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:42.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:41 smithi099 bash[16328]: audit 2024-01-27T23:45:40.025348+0000 mgr.smithi099.hzjdah (mgr.14182) 867 : audit [DBG] from='client.15156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:42.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:41 smithi142 bash[20347]: audit 2024-01-27T23:45:40.025348+0000 mgr.smithi099.hzjdah (mgr.14182) 867 : audit [DBG] from='client.15156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:43.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:42 smithi099 bash[16328]: cluster 2024-01-27T23:45:41.904555+0000 mgr.smithi099.hzjdah (mgr.14182) 868 : 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-01-27T23:45:43.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:42 smithi142 bash[20347]: cluster 2024-01-27T23:45:41.904555+0000 mgr.smithi099.hzjdah (mgr.14182) 868 : 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-01-27T23:45:44.947 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:44.947 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:45.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:44 smithi142 bash[20347]: cluster 2024-01-27T23:45:43.906178+0000 mgr.smithi099.hzjdah (mgr.14182) 869 : cluster [DBG] pgmap v596: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:45.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:44 smithi099 bash[16328]: cluster 2024-01-27T23:45:43.906178+0000 mgr.smithi099.hzjdah (mgr.14182) 869 : cluster [DBG] pgmap v596: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:45.597 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:46.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:45 smithi142 bash[20347]: audit 2024-01-27T23:45:44.941493+0000 mgr.smithi099.hzjdah (mgr.14182) 870 : audit [DBG] from='client.15160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:46.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:45 smithi099 bash[16328]: audit 2024-01-27T23:45:44.941493+0000 mgr.smithi099.hzjdah (mgr.14182) 870 : audit [DBG] from='client.15160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:46.598 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:47.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:46 smithi142 bash[20347]: cluster 2024-01-27T23:45:45.908061+0000 mgr.smithi099.hzjdah (mgr.14182) 871 : cluster [DBG] pgmap v597: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:47.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:46 smithi099 bash[16328]: cluster 2024-01-27T23:45:45.908061+0000 mgr.smithi099.hzjdah (mgr.14182) 871 : cluster [DBG] pgmap v597: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:49.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:48 smithi142 bash[20347]: cluster 2024-01-27T23:45:47.910221+0000 mgr.smithi099.hzjdah (mgr.14182) 872 : 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-01-27T23:45:49.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:48 smithi099 bash[16328]: cluster 2024-01-27T23:45:47.910221+0000 mgr.smithi099.hzjdah (mgr.14182) 872 : 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-01-27T23:45:49.864 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:49.864 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:50.557 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:50 smithi142 bash[20347]: audit 2024-01-27T23:45:49.853340+0000 mgr.smithi099.hzjdah (mgr.14182) 873 : audit [DBG] from='client.15164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:51.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:50 smithi142 bash[20347]: cluster 2024-01-27T23:45:49.911473+0000 mgr.smithi099.hzjdah (mgr.14182) 874 : 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-01-27T23:45:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:50 smithi099 bash[16328]: audit 2024-01-27T23:45:49.853340+0000 mgr.smithi099.hzjdah (mgr.14182) 873 : audit [DBG] from='client.15164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:51.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:50 smithi099 bash[16328]: cluster 2024-01-27T23:45:49.911473+0000 mgr.smithi099.hzjdah (mgr.14182) 874 : 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-01-27T23:45:51.558 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:53.022 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:52 smithi099 bash[16328]: cluster 2024-01-27T23:45:51.913199+0000 mgr.smithi099.hzjdah (mgr.14182) 875 : 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-01-27T23:45:53.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:52 smithi142 bash[20347]: cluster 2024-01-27T23:45:51.913199+0000 mgr.smithi099.hzjdah (mgr.14182) 875 : 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-01-27T23:45:54.833 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:54.833 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:55.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:54 smithi142 bash[20347]: cluster 2024-01-27T23:45:53.914881+0000 mgr.smithi099.hzjdah (mgr.14182) 876 : cluster [DBG] pgmap v601: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:55.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:54 smithi099 bash[16328]: cluster 2024-01-27T23:45:53.914881+0000 mgr.smithi099.hzjdah (mgr.14182) 876 : cluster [DBG] pgmap v601: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:55.488 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:56.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:55 smithi142 bash[20347]: audit 2024-01-27T23:45:54.822170+0000 mgr.smithi099.hzjdah (mgr.14182) 877 : audit [DBG] from='client.15168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:56.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:55 smithi099 bash[16328]: audit 2024-01-27T23:45:54.822170+0000 mgr.smithi099.hzjdah (mgr.14182) 877 : audit [DBG] from='client.15168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:56.489 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:57.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:56 smithi142 bash[20347]: cluster 2024-01-27T23:45:55.916380+0000 mgr.smithi099.hzjdah (mgr.14182) 878 : cluster [DBG] pgmap v602: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:57.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:56 smithi099 bash[16328]: cluster 2024-01-27T23:45:55.916380+0000 mgr.smithi099.hzjdah (mgr.14182) 878 : cluster [DBG] pgmap v602: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:59.280 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:45:58 smithi099 bash[16328]: cluster 2024-01-27T23:45:57.918239+0000 mgr.smithi099.hzjdah (mgr.14182) 879 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:59.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:45:58 smithi142 bash[20347]: cluster 2024-01-27T23:45:57.918239+0000 mgr.smithi099.hzjdah (mgr.14182) 879 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:59.723 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:45:59.723 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:00.408 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:00 smithi142 bash[20347]: audit 2024-01-27T23:45:59.719412+0000 mgr.smithi099.hzjdah (mgr.14182) 880 : audit [DBG] from='client.15172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:01.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:00 smithi142 bash[20347]: cluster 2024-01-27T23:45:59.919754+0000 mgr.smithi099.hzjdah (mgr.14182) 881 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:01.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:00 smithi099 bash[16328]: audit 2024-01-27T23:45:59.719412+0000 mgr.smithi099.hzjdah (mgr.14182) 880 : audit [DBG] from='client.15172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:01.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:00 smithi099 bash[16328]: cluster 2024-01-27T23:45:59.919754+0000 mgr.smithi099.hzjdah (mgr.14182) 881 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:01.410 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:02.973 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:02 smithi099 bash[16328]: cluster 2024-01-27T23:46:01.921428+0000 mgr.smithi099.hzjdah (mgr.14182) 882 : cluster [DBG] pgmap v605: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:03.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:02 smithi142 bash[20347]: cluster 2024-01-27T23:46:01.921428+0000 mgr.smithi099.hzjdah (mgr.14182) 882 : cluster [DBG] pgmap v605: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:04.807 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:04.808 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:05.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:04 smithi142 bash[20347]: cluster 2024-01-27T23:46:03.922796+0000 mgr.smithi099.hzjdah (mgr.14182) 883 : cluster [DBG] pgmap v606: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:05.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:04 smithi099 bash[16328]: cluster 2024-01-27T23:46:03.922796+0000 mgr.smithi099.hzjdah (mgr.14182) 883 : cluster [DBG] pgmap v606: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:05.456 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:06.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:05 smithi142 bash[20347]: audit 2024-01-27T23:46:04.799414+0000 mgr.smithi099.hzjdah (mgr.14182) 884 : audit [DBG] from='client.15176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:06.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:05 smithi099 bash[16328]: audit 2024-01-27T23:46:04.799414+0000 mgr.smithi099.hzjdah (mgr.14182) 884 : audit [DBG] from='client.15176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:06.457 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:07.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:06 smithi142 bash[20347]: cluster 2024-01-27T23:46:05.924377+0000 mgr.smithi099.hzjdah (mgr.14182) 885 : cluster [DBG] pgmap v607: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:46:07.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:06 smithi099 bash[16328]: cluster 2024-01-27T23:46:05.924377+0000 mgr.smithi099.hzjdah (mgr.14182) 885 : cluster [DBG] pgmap v607: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:46:09.263 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:08 smithi099 bash[16328]: cluster 2024-01-27T23:46:07.926511+0000 mgr.smithi099.hzjdah (mgr.14182) 886 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:09.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:08 smithi142 bash[20347]: cluster 2024-01-27T23:46:07.926511+0000 mgr.smithi099.hzjdah (mgr.14182) 886 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:09.624 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:09.624 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:10.271 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:11.272 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:11.283 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:10 smithi099 bash[16328]: audit 2024-01-27T23:46:09.612860+0000 mgr.smithi099.hzjdah (mgr.14182) 887 : audit [DBG] from='client.15180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:11.284 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:10 smithi099 bash[16328]: cluster 2024-01-27T23:46:09.928030+0000 mgr.smithi099.hzjdah (mgr.14182) 888 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:11.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:10 smithi142 bash[20347]: audit 2024-01-27T23:46:09.612860+0000 mgr.smithi099.hzjdah (mgr.14182) 887 : audit [DBG] from='client.15180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:11.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:10 smithi142 bash[20347]: cluster 2024-01-27T23:46:09.928030+0000 mgr.smithi099.hzjdah (mgr.14182) 888 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:13.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:12 smithi142 bash[20347]: cluster 2024-01-27T23:46:11.929747+0000 mgr.smithi099.hzjdah (mgr.14182) 889 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:13.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:12 smithi099 bash[16328]: cluster 2024-01-27T23:46:11.929747+0000 mgr.smithi099.hzjdah (mgr.14182) 889 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:14.584 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:14.585 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:15.199 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:14 smithi099 bash[16328]: cluster 2024-01-27T23:46:13.931411+0000 mgr.smithi099.hzjdah (mgr.14182) 890 : cluster [DBG] pgmap v611: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:15.200 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:15.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:14 smithi142 bash[20347]: cluster 2024-01-27T23:46:13.931411+0000 mgr.smithi099.hzjdah (mgr.14182) 890 : cluster [DBG] pgmap v611: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:16.201 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:16.214 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:15 smithi099 bash[16328]: audit 2024-01-27T23:46:14.573704+0000 mgr.smithi099.hzjdah (mgr.14182) 891 : audit [DBG] from='client.15184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:16.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:15 smithi142 bash[20347]: audit 2024-01-27T23:46:14.573704+0000 mgr.smithi099.hzjdah (mgr.14182) 891 : audit [DBG] from='client.15184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:17.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:16 smithi142 bash[20347]: cluster 2024-01-27T23:46:15.932694+0000 mgr.smithi099.hzjdah (mgr.14182) 892 : cluster [DBG] pgmap v612: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:46:17.312 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:16 smithi099 bash[16328]: cluster 2024-01-27T23:46:15.932694+0000 mgr.smithi099.hzjdah (mgr.14182) 892 : cluster [DBG] pgmap v612: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:46:19.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:18 smithi142 bash[20347]: cluster 2024-01-27T23:46:17.934682+0000 mgr.smithi099.hzjdah (mgr.14182) 893 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:19.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:18 smithi099 bash[16328]: cluster 2024-01-27T23:46:17.934682+0000 mgr.smithi099.hzjdah (mgr.14182) 893 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:19.359 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:19.359 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:20.006 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:21.007 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:21.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:20 smithi142 bash[20347]: audit 2024-01-27T23:46:19.348307+0000 mgr.smithi099.hzjdah (mgr.14182) 894 : audit [DBG] from='client.15188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:21.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:20 smithi142 bash[20347]: cluster 2024-01-27T23:46:19.936219+0000 mgr.smithi099.hzjdah (mgr.14182) 895 : cluster [DBG] pgmap v614: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:21.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:20 smithi099 bash[16328]: audit 2024-01-27T23:46:19.348307+0000 mgr.smithi099.hzjdah (mgr.14182) 894 : audit [DBG] from='client.15188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:21.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:20 smithi099 bash[16328]: cluster 2024-01-27T23:46:19.936219+0000 mgr.smithi099.hzjdah (mgr.14182) 895 : cluster [DBG] pgmap v614: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:23.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:23 smithi142 bash[20347]: cluster 2024-01-27T23:46:21.938030+0000 mgr.smithi099.hzjdah (mgr.14182) 896 : cluster [DBG] pgmap v615: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:23.377 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:23 smithi099 bash[16328]: cluster 2024-01-27T23:46:21.938030+0000 mgr.smithi099.hzjdah (mgr.14182) 896 : cluster [DBG] pgmap v615: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:24.173 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:24.173 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:24.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:24 smithi142 bash[20347]: audit 2024-01-27T23:46:23.893614+0000 mon.smithi099 (mon.0) 882 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:46:24.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:24 smithi099 bash[16328]: audit 2024-01-27T23:46:23.893614+0000 mon.smithi099 (mon.0) 882 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:46:24.842 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:25.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:25 smithi142 bash[20347]: cluster 2024-01-27T23:46:23.939675+0000 mgr.smithi099.hzjdah (mgr.14182) 897 : 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-01-27T23:46:25.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:25 smithi099 bash[16328]: cluster 2024-01-27T23:46:23.939675+0000 mgr.smithi099.hzjdah (mgr.14182) 897 : 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-01-27T23:46:25.842 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:26.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:26 smithi142 bash[20347]: audit 2024-01-27T23:46:24.165074+0000 mgr.smithi099.hzjdah (mgr.14182) 898 : audit [DBG] from='client.15192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:26.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:26 smithi142 bash[20347]: cluster 2024-01-27T23:46:25.941089+0000 mgr.smithi099.hzjdah (mgr.14182) 899 : cluster [DBG] pgmap v617: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:46:26.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:26 smithi099 bash[16328]: audit 2024-01-27T23:46:24.165074+0000 mgr.smithi099.hzjdah (mgr.14182) 898 : audit [DBG] from='client.15192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:26.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:26 smithi099 bash[16328]: cluster 2024-01-27T23:46:25.941089+0000 mgr.smithi099.hzjdah (mgr.14182) 899 : cluster [DBG] pgmap v617: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:46:29.093 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:29.094 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:36:02.468412Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:36:02.468640Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:36:02.468863Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:36:02.468168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:36:02.467776Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:36:02.470505Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:36:02.469083Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:36:02.469304Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:36:02.470280Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:29.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:28 smithi142 bash[20347]: cluster 2024-01-27T23:46:27.942403+0000 mgr.smithi099.hzjdah (mgr.14182) 900 : 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-01-27T23:46:29.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:28 smithi099 bash[16328]: cluster 2024-01-27T23:46:27.942403+0000 mgr.smithi099.hzjdah (mgr.14182) 900 : 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-01-27T23:46:29.743 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:30.744 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:31.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:31 smithi099 bash[16328]: audit 2024-01-27T23:46:29.084382+0000 mgr.smithi099.hzjdah (mgr.14182) 901 : audit [DBG] from='client.15196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:31.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:31 smithi099 bash[16328]: cluster 2024-01-27T23:46:29.943805+0000 mgr.smithi099.hzjdah (mgr.14182) 902 : 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-01-27T23:46:31.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:31 smithi099 bash[16328]: audit 2024-01-27T23:46:30.196600+0000 mon.smithi099 (mon.0) 883 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:46:31.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:31 smithi099 bash[16328]: audit 2024-01-27T23:46:30.481783+0000 mon.smithi099 (mon.0) 884 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:46:31.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:31 smithi099 bash[16328]: audit 2024-01-27T23:46:30.483108+0000 mon.smithi099 (mon.0) 885 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:46:31.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:31 smithi099 bash[16328]: audit 2024-01-27T23:46:30.490069+0000 mon.smithi099 (mon.0) 886 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:46:31.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:31 smithi099 bash[16328]: audit 2024-01-27T23:46:30.496666+0000 mon.smithi099 (mon.0) 887 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:46:31.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:31 smithi099 bash[16328]: audit 2024-01-27T23:46:30.511989+0000 mon.smithi099 (mon.0) 888 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:46:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:31 smithi142 bash[20347]: audit 2024-01-27T23:46:29.084382+0000 mgr.smithi099.hzjdah (mgr.14182) 901 : audit [DBG] from='client.15196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:31 smithi142 bash[20347]: cluster 2024-01-27T23:46:29.943805+0000 mgr.smithi099.hzjdah (mgr.14182) 902 : 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-01-27T23:46:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:31 smithi142 bash[20347]: audit 2024-01-27T23:46:30.196600+0000 mon.smithi099 (mon.0) 883 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:46:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:31 smithi142 bash[20347]: audit 2024-01-27T23:46:30.481783+0000 mon.smithi099 (mon.0) 884 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:46:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:31 smithi142 bash[20347]: audit 2024-01-27T23:46:30.483108+0000 mon.smithi099 (mon.0) 885 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:46:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:31 smithi142 bash[20347]: audit 2024-01-27T23:46:30.490069+0000 mon.smithi099 (mon.0) 886 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:46:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:31 smithi142 bash[20347]: audit 2024-01-27T23:46:30.496666+0000 mon.smithi099 (mon.0) 887 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:46:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:31 smithi142 bash[20347]: audit 2024-01-27T23:46:30.511989+0000 mon.smithi099 (mon.0) 888 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:46:32.280 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:32 smithi099 bash[16328]: cluster 2024-01-27T23:46:30.490955+0000 mgr.smithi099.hzjdah (mgr.14182) 903 : cluster [DBG] pgmap v620: 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-01-27T23:46:32.280 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:32 smithi099 bash[16328]: cephadm 2024-01-27T23:46:30.516282+0000 mgr.smithi099.hzjdah (mgr.14182) 904 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.hzgayn on smithi142 2024-01-27T23:46:32.280 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:32 smithi099 bash[16328]: cluster 2024-01-27T23:46:31.487295+0000 mon.smithi099 (mon.0) 889 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:46:32.280 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:32 smithi099 bash[16328]: cluster 2024-01-27T23:46:31.487362+0000 mon.smithi099 (mon.0) 890 : cluster [INF] Cluster is now healthy 2024-01-27T23:46:32.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:32 smithi142 bash[20347]: cluster 2024-01-27T23:46:30.490955+0000 mgr.smithi099.hzjdah (mgr.14182) 903 : cluster [DBG] pgmap v620: 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-01-27T23:46:32.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:32 smithi142 bash[20347]: cephadm 2024-01-27T23:46:30.516282+0000 mgr.smithi099.hzjdah (mgr.14182) 904 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.hzgayn on smithi142 2024-01-27T23:46:32.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:32 smithi142 bash[20347]: cluster 2024-01-27T23:46:31.487295+0000 mon.smithi099 (mon.0) 889 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:46:32.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:32 smithi142 bash[20347]: cluster 2024-01-27T23:46:31.487362+0000 mon.smithi099 (mon.0) 890 : cluster [INF] Cluster is now healthy 2024-01-27T23:46:34.166 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:34.166 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:44:15.335852Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.odonsm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:19.637530Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rbzzqz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-rbzzqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.rbzzqz\nDeploy daemon haproxy.nfs.foo.smithi142.rbzzqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.881703Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.tqvbql on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-tqvbql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.tqvbql\nDeploy daemon haproxy.nfs.foo.smithi099.tqvbql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:45:23.885235Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.drwdho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:34.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:34 smithi142 bash[20347]: cluster 2024-01-27T23:46:32.492600+0000 mgr.smithi099.hzjdah (mgr.14182) 905 : cluster [DBG] pgmap v621: 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-01-27T23:46:34.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:34 smithi099 bash[16328]: cluster 2024-01-27T23:46:32.492600+0000 mgr.smithi099.hzjdah (mgr.14182) 905 : cluster [DBG] pgmap v621: 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-01-27T23:46:34.843 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: audit 2024-01-27T23:46:34.157495+0000 mgr.smithi099.hzjdah (mgr.14182) 906 : audit [DBG] from='client.15200 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: cephadm 2024-01-27T23:46:34.400562+0000 mgr.smithi099.hzjdah (mgr.14182) 907 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.hzgayn ... 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:46:35.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.hzgayn ... 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:35.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: cephadm 2024-01-27T23:46:34.400977+0000 mgr.smithi099.hzjdah (mgr.14182) 908 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: audit 2024-01-27T23:46:34.401608+0000 mon.smithi099 (mon.0) 891 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.hzgayn"}]: dispatch 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: cephadm 2024-01-27T23:46:34.403011+0000 mgr.smithi099.hzjdah (mgr.14182) 909 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.hzgayn ... 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:35.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:35.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:35.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: cephadm 2024-01-27T23:46:34.407903+0000 mgr.smithi099.hzjdah (mgr.14182) 910 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.hdkcfy on smithi099 2024-01-27T23:46:35.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:35 smithi142 bash[20347]: cluster 2024-01-27T23:46:34.493740+0000 mgr.smithi099.hzjdah (mgr.14182) 911 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: audit 2024-01-27T23:46:34.157495+0000 mgr.smithi099.hzjdah (mgr.14182) 906 : audit [DBG] from='client.15200 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: cephadm 2024-01-27T23:46:34.400562+0000 mgr.smithi099.hzjdah (mgr.14182) 907 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.hzgayn ... 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.hzgayn ... 2024-01-27T23:46:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: cephadm 2024-01-27T23:46:34.400977+0000 mgr.smithi099.hzjdah (mgr.14182) 908 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: audit 2024-01-27T23:46:34.401608+0000 mon.smithi099 (mon.0) 891 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.hzgayn"}]: dispatch 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: cephadm 2024-01-27T23:46:34.403011+0000 mgr.smithi099.hzjdah (mgr.14182) 909 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn 2024-01-27T23:46:35.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.hzgayn ... 2024-01-27T23:46:35.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:35.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:35.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:35.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:35.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: cephadm 2024-01-27T23:46:34.407903+0000 mgr.smithi099.hzjdah (mgr.14182) 910 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.hdkcfy on smithi099 2024-01-27T23:46:35.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:35 smithi099 bash[16328]: cluster 2024-01-27T23:46:34.493740+0000 mgr.smithi099.hzjdah (mgr.14182) 911 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-27T23:46:35.844 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:37.800 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:37 smithi099 bash[16328]: cluster 2024-01-27T23:46:36.495081+0000 mgr.smithi099.hzjdah (mgr.14182) 912 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-27T23:46:37.804 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:37 smithi142 bash[20347]: cluster 2024-01-27T23:46:36.495081+0000 mgr.smithi099.hzjdah (mgr.14182) 912 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-27T23:46:39.275 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:39.275 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:39.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: cluster 2024-01-27T23:46:38.496241+0000 mgr.smithi099.hzjdah (mgr.14182) 913 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-27T23:46:39.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: cephadm 2024-01-27T23:46:38.616640+0000 mgr.smithi099.hzjdah (mgr.14182) 914 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:39.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:39.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:39.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:39.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:39.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:39.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.hdkcfy ... 2024-01-27T23:46:39.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:39.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.hdkcfy ... 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: cephadm 2024-01-27T23:46:38.616914+0000 mgr.smithi099.hzjdah (mgr.14182) 915 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: audit 2024-01-27T23:46:38.617470+0000 mon.smithi099 (mon.0) 892 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.hdkcfy"}]: dispatch 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: cephadm 2024-01-27T23:46:38.618474+0000 mgr.smithi099.hzjdah (mgr.14182) 916 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:46:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:39.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.hdkcfy ... 2024-01-27T23:46:39.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:39.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:39.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:39.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:39.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:39.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: cephadm 2024-01-27T23:46:38.622814+0000 mgr.smithi099.hzjdah (mgr.14182) 917 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:46:39.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: cephadm 2024-01-27T23:46:38.626728+0000 mgr.smithi099.hzjdah (mgr.14182) 918 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:46:39.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: cluster 2024-01-27T23:46:38.627428+0000 mgr.smithi099.hzjdah (mgr.14182) 919 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 117 B/s rd, 0 op/s 2024-01-27T23:46:39.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:39 smithi099 bash[16328]: audit 2024-01-27T23:46:38.714036+0000 mon.smithi099 (mon.0) 893 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:46:39.953 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:40.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: cluster 2024-01-27T23:46:38.496241+0000 mgr.smithi099.hzjdah (mgr.14182) 913 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-27T23:46:40.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: cephadm 2024-01-27T23:46:38.616640+0000 mgr.smithi099.hzjdah (mgr.14182) 914 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:40.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:40.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:40.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.hdkcfy ... 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:46:40.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.hdkcfy ... 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:40.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: cephadm 2024-01-27T23:46:38.616914+0000 mgr.smithi099.hzjdah (mgr.14182) 915 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: audit 2024-01-27T23:46:38.617470+0000 mon.smithi099 (mon.0) 892 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.hdkcfy"}]: dispatch 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: cephadm 2024-01-27T23:46:38.618474+0000 mgr.smithi099.hzjdah (mgr.14182) 916 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.hdkcfy ... 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:46:40.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:46:40.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:40.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: cephadm 2024-01-27T23:46:38.622814+0000 mgr.smithi099.hzjdah (mgr.14182) 917 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:46:40.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: cephadm 2024-01-27T23:46:38.626728+0000 mgr.smithi099.hzjdah (mgr.14182) 918 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:46:40.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: cluster 2024-01-27T23:46:38.627428+0000 mgr.smithi099.hzjdah (mgr.14182) 919 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 117 B/s rd, 0 op/s 2024-01-27T23:46:40.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:39 smithi142 bash[20347]: audit 2024-01-27T23:46:38.714036+0000 mon.smithi099 (mon.0) 893 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:46:40.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:40 smithi099 bash[16328]: audit 2024-01-27T23:46:39.264013+0000 mgr.smithi099.hzjdah (mgr.14182) 920 : audit [DBG] from='client.15204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:40.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:40 smithi099 bash[16328]: cluster 2024-01-27T23:46:39.555839+0000 mon.smithi099 (mon.0) 894 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:46:40.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:40 smithi142 bash[20347]: audit 2024-01-27T23:46:39.264013+0000 mgr.smithi099.hzjdah (mgr.14182) 920 : audit [DBG] from='client.15204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:40.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:40 smithi142 bash[20347]: cluster 2024-01-27T23:46:39.555839+0000 mon.smithi099 (mon.0) 894 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:46:40.955 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:41.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:41 smithi099 bash[16328]: cluster 2024-01-27T23:46:40.628799+0000 mgr.smithi099.hzjdah (mgr.14182) 921 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:46:42.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:41 smithi142 bash[20347]: cluster 2024-01-27T23:46:40.628799+0000 mgr.smithi099.hzjdah (mgr.14182) 921 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:46:44.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:43 smithi142 bash[20347]: cluster 2024-01-27T23:46:42.630526+0000 mgr.smithi099.hzjdah (mgr.14182) 922 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:46:44.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:43 smithi099 bash[16328]: cluster 2024-01-27T23:46:42.630526+0000 mgr.smithi099.hzjdah (mgr.14182) 922 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:46:44.184 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:44.184 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:44.778 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:45.779 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:46.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:45 smithi099 bash[16328]: audit 2024-01-27T23:46:44.174484+0000 mgr.smithi099.hzjdah (mgr.14182) 923 : audit [DBG] from='client.15208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:46.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:45 smithi099 bash[16328]: cluster 2024-01-27T23:46:44.631787+0000 mgr.smithi099.hzjdah (mgr.14182) 924 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2024-01-27T23:46:46.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:45 smithi142 bash[20347]: audit 2024-01-27T23:46:44.174484+0000 mgr.smithi099.hzjdah (mgr.14182) 923 : audit [DBG] from='client.15208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:46.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:45 smithi142 bash[20347]: cluster 2024-01-27T23:46:44.631787+0000 mgr.smithi099.hzjdah (mgr.14182) 924 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2024-01-27T23:46:48.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:47 smithi142 bash[20347]: cluster 2024-01-27T23:46:46.632824+0000 mgr.smithi099.hzjdah (mgr.14182) 925 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:46:48.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:47 smithi099 bash[16328]: cluster 2024-01-27T23:46:46.632824+0000 mgr.smithi099.hzjdah (mgr.14182) 925 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:46:48.976 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:48.976 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:49.591 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:50.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:49 smithi142 bash[20347]: cluster 2024-01-27T23:46:48.634320+0000 mgr.smithi099.hzjdah (mgr.14182) 926 : cluster [DBG] pgmap v630: 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-01-27T23:46:50.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:49 smithi142 bash[20347]: audit 2024-01-27T23:46:48.972196+0000 mgr.smithi099.hzjdah (mgr.14182) 927 : audit [DBG] from='client.15212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:50.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:49 smithi099 bash[16328]: cluster 2024-01-27T23:46:48.634320+0000 mgr.smithi099.hzjdah (mgr.14182) 926 : cluster [DBG] pgmap v630: 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-01-27T23:46:50.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:49 smithi099 bash[16328]: audit 2024-01-27T23:46:48.972196+0000 mgr.smithi099.hzjdah (mgr.14182) 927 : audit [DBG] from='client.15212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:50.592 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:51.937 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:51 smithi099 bash[16328]: cluster 2024-01-27T23:46:50.635445+0000 mgr.smithi099.hzjdah (mgr.14182) 928 : 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-01-27T23:46:52.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:51 smithi142 bash[20347]: cluster 2024-01-27T23:46:50.635445+0000 mgr.smithi099.hzjdah (mgr.14182) 928 : 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-01-27T23:46:53.693 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:53.693 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:54.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:53 smithi099 bash[16328]: cluster 2024-01-27T23:46:52.637381+0000 mgr.smithi099.hzjdah (mgr.14182) 929 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:54.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:53 smithi142 bash[20347]: cluster 2024-01-27T23:46:52.637381+0000 mgr.smithi099.hzjdah (mgr.14182) 929 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:54.326 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:55.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:54 smithi142 bash[20347]: audit 2024-01-27T23:46:53.681367+0000 mgr.smithi099.hzjdah (mgr.14182) 930 : audit [DBG] from='client.15216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:55.327 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:55.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:54 smithi099 bash[16328]: audit 2024-01-27T23:46:53.681367+0000 mgr.smithi099.hzjdah (mgr.14182) 930 : audit [DBG] from='client.15216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:56.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:55 smithi142 bash[20347]: cluster 2024-01-27T23:46:54.638811+0000 mgr.smithi099.hzjdah (mgr.14182) 931 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:46:56.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:55 smithi099 bash[16328]: cluster 2024-01-27T23:46:54.638811+0000 mgr.smithi099.hzjdah (mgr.14182) 931 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:46:58.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:57 smithi142 bash[20347]: cluster 2024-01-27T23:46:56.639722+0000 mgr.smithi099.hzjdah (mgr.14182) 932 : 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-01-27T23:46:58.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:57 smithi099 bash[16328]: cluster 2024-01-27T23:46:56.639722+0000 mgr.smithi099.hzjdah (mgr.14182) 932 : 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-01-27T23:46:58.517 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:46:58.517 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:59.122 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:00.123 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:00.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:59 smithi142 bash[20347]: audit 2024-01-27T23:46:58.506767+0000 mgr.smithi099.hzjdah (mgr.14182) 933 : audit [DBG] from='client.15220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:46:59 smithi142 bash[20347]: cluster 2024-01-27T23:46:58.641283+0000 mgr.smithi099.hzjdah (mgr.14182) 934 : 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-01-27T23:47:00.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:59 smithi099 bash[16328]: audit 2024-01-27T23:46:58.506767+0000 mgr.smithi099.hzjdah (mgr.14182) 933 : audit [DBG] from='client.15220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:00.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:46:59 smithi099 bash[16328]: cluster 2024-01-27T23:46:58.641283+0000 mgr.smithi099.hzjdah (mgr.14182) 934 : 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-01-27T23:47:02.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:01 smithi142 bash[20347]: cluster 2024-01-27T23:47:00.642774+0000 mgr.smithi099.hzjdah (mgr.14182) 935 : 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-01-27T23:47:02.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:01 smithi099 bash[16328]: cluster 2024-01-27T23:47:00.642774+0000 mgr.smithi099.hzjdah (mgr.14182) 935 : 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-01-27T23:47:03.292 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:03.293 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:03.959 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:04.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:03 smithi142 bash[20347]: cluster 2024-01-27T23:47:02.644700+0000 mgr.smithi099.hzjdah (mgr.14182) 936 : cluster [DBG] pgmap v637: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:04.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:03 smithi099 bash[16328]: cluster 2024-01-27T23:47:02.644700+0000 mgr.smithi099.hzjdah (mgr.14182) 936 : cluster [DBG] pgmap v637: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:04.960 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:05.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:04 smithi142 bash[20347]: audit 2024-01-27T23:47:03.281234+0000 mgr.smithi099.hzjdah (mgr.14182) 937 : audit [DBG] from='client.15224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:05.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:04 smithi099 bash[16328]: audit 2024-01-27T23:47:03.281234+0000 mgr.smithi099.hzjdah (mgr.14182) 937 : audit [DBG] from='client.15224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:06.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:05 smithi142 bash[20347]: cluster 2024-01-27T23:47:04.646106+0000 mgr.smithi099.hzjdah (mgr.14182) 938 : cluster [DBG] pgmap v638: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:47:06.331 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:05 smithi099 bash[16328]: cluster 2024-01-27T23:47:04.646106+0000 mgr.smithi099.hzjdah (mgr.14182) 938 : cluster [DBG] pgmap v638: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:47:08.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:07 smithi099 bash[16328]: cluster 2024-01-27T23:47:06.647830+0000 mgr.smithi099.hzjdah (mgr.14182) 939 : 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-01-27T23:47:08.169 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:08.169 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:08.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:07 smithi142 bash[20347]: cluster 2024-01-27T23:47:06.647830+0000 mgr.smithi099.hzjdah (mgr.14182) 939 : 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-01-27T23:47:08.830 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:09.831 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:10.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:09 smithi142 bash[20347]: audit 2024-01-27T23:47:08.165106+0000 mgr.smithi099.hzjdah (mgr.14182) 940 : audit [DBG] from='client.15228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:10.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:09 smithi142 bash[20347]: cluster 2024-01-27T23:47:08.649383+0000 mgr.smithi099.hzjdah (mgr.14182) 941 : 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-01-27T23:47:10.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:09 smithi099 bash[16328]: audit 2024-01-27T23:47:08.165106+0000 mgr.smithi099.hzjdah (mgr.14182) 940 : audit [DBG] from='client.15228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:10.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:09 smithi099 bash[16328]: cluster 2024-01-27T23:47:08.649383+0000 mgr.smithi099.hzjdah (mgr.14182) 941 : 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-01-27T23:47:12.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:12 smithi142 bash[20347]: cluster 2024-01-27T23:47:10.650846+0000 mgr.smithi099.hzjdah (mgr.14182) 942 : 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-01-27T23:47:12.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:12 smithi099 bash[16328]: cluster 2024-01-27T23:47:10.650846+0000 mgr.smithi099.hzjdah (mgr.14182) 942 : 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-01-27T23:47:13.224 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:13.224 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:13.911 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:14.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:14 smithi142 bash[20347]: cluster 2024-01-27T23:47:12.652730+0000 mgr.smithi099.hzjdah (mgr.14182) 943 : cluster [DBG] pgmap v642: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:14.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:14 smithi099 bash[16328]: cluster 2024-01-27T23:47:12.652730+0000 mgr.smithi099.hzjdah (mgr.14182) 943 : cluster [DBG] pgmap v642: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:14.912 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:15.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:15 smithi142 bash[20347]: audit 2024-01-27T23:47:13.217239+0000 mgr.smithi099.hzjdah (mgr.14182) 944 : audit [DBG] from='client.15232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:15.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:15 smithi099 bash[16328]: audit 2024-01-27T23:47:13.217239+0000 mgr.smithi099.hzjdah (mgr.14182) 944 : audit [DBG] from='client.15232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:16.241 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:16 smithi099 bash[16328]: cluster 2024-01-27T23:47:14.654179+0000 mgr.smithi099.hzjdah (mgr.14182) 945 : cluster [DBG] pgmap v643: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:47:16.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:16 smithi142 bash[20347]: cluster 2024-01-27T23:47:14.654179+0000 mgr.smithi099.hzjdah (mgr.14182) 945 : cluster [DBG] pgmap v643: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:47:17.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:17 smithi142 bash[20347]: cluster 2024-01-27T23:47:16.655832+0000 mgr.smithi099.hzjdah (mgr.14182) 946 : 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-01-27T23:47:17.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:17 smithi099 bash[16328]: cluster 2024-01-27T23:47:16.655832+0000 mgr.smithi099.hzjdah (mgr.14182) 946 : 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-01-27T23:47:18.088 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:18.088 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:18.697 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:19.698 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:20.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:19 smithi099 bash[16328]: audit 2024-01-27T23:47:18.084266+0000 mgr.smithi099.hzjdah (mgr.14182) 947 : audit [DBG] from='client.15236 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:20.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:19 smithi099 bash[16328]: cluster 2024-01-27T23:47:18.657544+0000 mgr.smithi099.hzjdah (mgr.14182) 948 : 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-01-27T23:47:20.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:19 smithi142 bash[20347]: audit 2024-01-27T23:47:18.084266+0000 mgr.smithi099.hzjdah (mgr.14182) 947 : audit [DBG] from='client.15236 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:20.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:19 smithi142 bash[20347]: cluster 2024-01-27T23:47:18.657544+0000 mgr.smithi099.hzjdah (mgr.14182) 948 : 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-01-27T23:47:22.279 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:21 smithi099 bash[16328]: cluster 2024-01-27T23:47:20.658981+0000 mgr.smithi099.hzjdah (mgr.14182) 949 : 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-01-27T23:47:22.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:21 smithi142 bash[20347]: cluster 2024-01-27T23:47:20.658981+0000 mgr.smithi099.hzjdah (mgr.14182) 949 : 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-01-27T23:47:22.695 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:22.696 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:23.384 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:24.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:23 smithi142 bash[20347]: cluster 2024-01-27T23:47:22.660849+0000 mgr.smithi099.hzjdah (mgr.14182) 950 : cluster [DBG] pgmap v647: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:24.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:23 smithi142 bash[20347]: audit 2024-01-27T23:47:22.687875+0000 mgr.smithi099.hzjdah (mgr.14182) 951 : audit [DBG] from='client.15240 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:24.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:23 smithi099 bash[16328]: cluster 2024-01-27T23:47:22.660849+0000 mgr.smithi099.hzjdah (mgr.14182) 950 : cluster [DBG] pgmap v647: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:24.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:23 smithi099 bash[16328]: audit 2024-01-27T23:47:22.687875+0000 mgr.smithi099.hzjdah (mgr.14182) 951 : audit [DBG] from='client.15240 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:24.386 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:26.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:25 smithi142 bash[20347]: cluster 2024-01-27T23:47:24.662310+0000 mgr.smithi099.hzjdah (mgr.14182) 952 : cluster [DBG] pgmap v648: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:47:26.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:25 smithi099 bash[16328]: cluster 2024-01-27T23:47:24.662310+0000 mgr.smithi099.hzjdah (mgr.14182) 952 : cluster [DBG] pgmap v648: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:47:27.577 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:27.578 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:28.209 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:27 smithi099 bash[16328]: cluster 2024-01-27T23:47:26.663712+0000 mgr.smithi099.hzjdah (mgr.14182) 953 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:28.210 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:28.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:27 smithi142 bash[20347]: cluster 2024-01-27T23:47:26.663712+0000 mgr.smithi099.hzjdah (mgr.14182) 953 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:29.211 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:29.224 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:28 smithi099 bash[16328]: audit 2024-01-27T23:47:27.568418+0000 mgr.smithi099.hzjdah (mgr.14182) 954 : audit [DBG] from='client.15244 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:29.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:28 smithi142 bash[20347]: audit 2024-01-27T23:47:27.568418+0000 mgr.smithi099.hzjdah (mgr.14182) 954 : audit [DBG] from='client.15244 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:30.250 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:29 smithi099 bash[16328]: cluster 2024-01-27T23:47:28.665278+0000 mgr.smithi099.hzjdah (mgr.14182) 955 : cluster [DBG] pgmap v650: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:30.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:29 smithi142 bash[20347]: cluster 2024-01-27T23:47:28.665278+0000 mgr.smithi099.hzjdah (mgr.14182) 955 : cluster [DBG] pgmap v650: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:32.302 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:32.302 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:32.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:31 smithi142 bash[20347]: cluster 2024-01-27T23:47:30.666782+0000 mgr.smithi099.hzjdah (mgr.14182) 956 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:32.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:31 smithi099 bash[16328]: cluster 2024-01-27T23:47:30.666782+0000 mgr.smithi099.hzjdah (mgr.14182) 956 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:32.999 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:34.000 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:34.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:33 smithi142 bash[20347]: audit 2024-01-27T23:47:32.292675+0000 mgr.smithi099.hzjdah (mgr.14182) 957 : audit [DBG] from='client.15248 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:34.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:33 smithi142 bash[20347]: cluster 2024-01-27T23:47:32.668759+0000 mgr.smithi099.hzjdah (mgr.14182) 958 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:34.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:33 smithi099 bash[16328]: audit 2024-01-27T23:47:32.292675+0000 mgr.smithi099.hzjdah (mgr.14182) 957 : audit [DBG] from='client.15248 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:34.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:33 smithi099 bash[16328]: cluster 2024-01-27T23:47:32.668759+0000 mgr.smithi099.hzjdah (mgr.14182) 958 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:36.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:35 smithi142 bash[20347]: cluster 2024-01-27T23:47:34.670318+0000 mgr.smithi099.hzjdah (mgr.14182) 959 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:47:36.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:35 smithi099 bash[16328]: cluster 2024-01-27T23:47:34.670318+0000 mgr.smithi099.hzjdah (mgr.14182) 959 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:47:37.394 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:37.394 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:38.062 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:38.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:37 smithi142 bash[20347]: cluster 2024-01-27T23:47:36.671987+0000 mgr.smithi099.hzjdah (mgr.14182) 960 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:38.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:37 smithi099 bash[16328]: cluster 2024-01-27T23:47:36.671987+0000 mgr.smithi099.hzjdah (mgr.14182) 960 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:39.063 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:39.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:38 smithi142 bash[20347]: audit 2024-01-27T23:47:37.384790+0000 mgr.smithi099.hzjdah (mgr.14182) 961 : audit [DBG] from='client.15252 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:39.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:38 smithi142 bash[20347]: audit 2024-01-27T23:47:38.630287+0000 mon.smithi099 (mon.0) 895 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:47:39.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:38 smithi142 bash[20347]: audit 2024-01-27T23:47:38.934027+0000 mon.smithi099 (mon.0) 896 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:47:39.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:38 smithi099 bash[16328]: audit 2024-01-27T23:47:37.384790+0000 mgr.smithi099.hzjdah (mgr.14182) 961 : audit [DBG] from='client.15252 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:39.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:38 smithi099 bash[16328]: audit 2024-01-27T23:47:38.630287+0000 mon.smithi099 (mon.0) 895 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:47:39.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:38 smithi099 bash[16328]: audit 2024-01-27T23:47:38.934027+0000 mon.smithi099 (mon.0) 896 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:47:40.266 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:39 smithi099 bash[16328]: cluster 2024-01-27T23:47:38.673049+0000 mgr.smithi099.hzjdah (mgr.14182) 962 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:39 smithi142 bash[20347]: cluster 2024-01-27T23:47:38.673049+0000 mgr.smithi099.hzjdah (mgr.14182) 962 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:42.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:41 smithi142 bash[20347]: cluster 2024-01-27T23:47:40.674554+0000 mgr.smithi099.hzjdah (mgr.14182) 963 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:42.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:41 smithi099 bash[16328]: cluster 2024-01-27T23:47:40.674554+0000 mgr.smithi099.hzjdah (mgr.14182) 963 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:42.337 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:42.337 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:37:16.549429Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:37:16.549851Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:37:16.550124Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:37:16.550380Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:37:16.550999Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:37:16.550695Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:37:16.552004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:42.949 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:43.950 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:44.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:44 smithi142 bash[20347]: audit 2024-01-27T23:47:42.330853+0000 mgr.smithi099.hzjdah (mgr.14182) 964 : audit [DBG] from='client.15256 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:44.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:44 smithi142 bash[20347]: cluster 2024-01-27T23:47:42.676483+0000 mgr.smithi099.hzjdah (mgr.14182) 965 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:44.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:44 smithi099 bash[16328]: audit 2024-01-27T23:47:42.330853+0000 mgr.smithi099.hzjdah (mgr.14182) 964 : audit [DBG] from='client.15256 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:44.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:44 smithi099 bash[16328]: cluster 2024-01-27T23:47:42.676483+0000 mgr.smithi099.hzjdah (mgr.14182) 965 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:47:45.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:45 smithi099 bash[16328]: audit 2024-01-27T23:47:44.558416+0000 mon.smithi099 (mon.0) 897 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:47:45.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:45 smithi099 bash[16328]: cluster 2024-01-27T23:47:44.677944+0000 mgr.smithi099.hzjdah (mgr.14182) 966 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:47:45.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:45 smithi099 bash[16328]: audit 2024-01-27T23:47:44.842650+0000 mon.smithi099 (mon.0) 898 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:47:45.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:45 smithi099 bash[16328]: audit 2024-01-27T23:47:44.844642+0000 mon.smithi099 (mon.0) 899 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:47:45.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:45 smithi099 bash[16328]: audit 2024-01-27T23:47:44.855177+0000 mon.smithi099 (mon.0) 900 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:47:45.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:45 smithi099 bash[16328]: cluster 2024-01-27T23:47:44.856238+0000 mgr.smithi099.hzjdah (mgr.14182) 967 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-27T23:47:45.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:45 smithi099 bash[16328]: audit 2024-01-27T23:47:44.865099+0000 mon.smithi099 (mon.0) 901 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:47:45.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:45 smithi099 bash[16328]: audit 2024-01-27T23:47:44.883023+0000 mon.smithi099 (mon.0) 902 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:47:45.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:45 smithi099 bash[16328]: cephadm 2024-01-27T23:47:44.888325+0000 mgr.smithi099.hzjdah (mgr.14182) 968 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.jbrsjl on smithi142 2024-01-27T23:47:46.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:45 smithi142 bash[20347]: audit 2024-01-27T23:47:44.558416+0000 mon.smithi099 (mon.0) 897 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:47:46.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:45 smithi142 bash[20347]: cluster 2024-01-27T23:47:44.677944+0000 mgr.smithi099.hzjdah (mgr.14182) 966 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:47:46.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:45 smithi142 bash[20347]: audit 2024-01-27T23:47:44.842650+0000 mon.smithi099 (mon.0) 898 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:47:46.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:45 smithi142 bash[20347]: audit 2024-01-27T23:47:44.844642+0000 mon.smithi099 (mon.0) 899 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:47:46.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:45 smithi142 bash[20347]: audit 2024-01-27T23:47:44.855177+0000 mon.smithi099 (mon.0) 900 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:47:46.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:45 smithi142 bash[20347]: cluster 2024-01-27T23:47:44.856238+0000 mgr.smithi099.hzjdah (mgr.14182) 967 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-01-27T23:47:46.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:45 smithi142 bash[20347]: audit 2024-01-27T23:47:44.865099+0000 mon.smithi099 (mon.0) 901 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:47:46.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:45 smithi142 bash[20347]: audit 2024-01-27T23:47:44.883023+0000 mon.smithi099 (mon.0) 902 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:47:46.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:45 smithi142 bash[20347]: cephadm 2024-01-27T23:47:44.888325+0000 mgr.smithi099.hzjdah (mgr.14182) 968 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.jbrsjl on smithi142 2024-01-27T23:47:46.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:46 smithi099 bash[16328]: cluster 2024-01-27T23:47:45.555953+0000 mon.smithi099 (mon.0) 903 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:47:46.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:46 smithi099 bash[16328]: cluster 2024-01-27T23:47:45.556027+0000 mon.smithi099 (mon.0) 904 : cluster [INF] Cluster is now healthy 2024-01-27T23:47:47.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:46 smithi142 bash[20347]: cluster 2024-01-27T23:47:45.555953+0000 mon.smithi099 (mon.0) 903 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:47:47.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:46 smithi142 bash[20347]: cluster 2024-01-27T23:47:45.556027+0000 mon.smithi099 (mon.0) 904 : cluster [INF] Cluster is now healthy 2024-01-27T23:47:47.121 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:47.121 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:45:23.888599Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.ndbhaq on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:47.760 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:47.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:47 smithi099 bash[16328]: cluster 2024-01-27T23:47:46.857721+0000 mgr.smithi099.hzjdah (mgr.14182) 969 : cluster [DBG] pgmap v660: 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-01-27T23:47:48.054 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:47 smithi142 bash[20347]: cluster 2024-01-27T23:47:46.857721+0000 mgr.smithi099.hzjdah (mgr.14182) 969 : cluster [DBG] pgmap v660: 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-01-27T23:47:48.761 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:48.832 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:48 smithi099 bash[16328]: audit 2024-01-27T23:47:47.112922+0000 mgr.smithi099.hzjdah (mgr.14182) 970 : audit [DBG] from='client.15260 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:49.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:48 smithi142 bash[20347]: audit 2024-01-27T23:47:47.112922+0000 mgr.smithi099.hzjdah (mgr.14182) 970 : audit [DBG] from='client.15260 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: cephadm 2024-01-27T23:47:48.692127+0000 mgr.smithi099.hzjdah (mgr.14182) 971 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.jbrsjl ... 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:49.933 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.jbrsjl ... 2024-01-27T23:47:49.934 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: cephadm 2024-01-27T23:47:48.692628+0000 mgr.smithi099.hzjdah (mgr.14182) 972 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: audit 2024-01-27T23:47:48.693230+0000 mon.smithi099 (mon.0) 905 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.jbrsjl"}]: dispatch 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: cephadm 2024-01-27T23:47:48.695077+0000 mgr.smithi099.hzjdah (mgr.14182) 973 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.jbrsjl ... 2024-01-27T23:47:49.935 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:49.936 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:49.936 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:49.936 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:49.936 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:49.936 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: cephadm 2024-01-27T23:47:48.699947+0000 mgr.smithi099.hzjdah (mgr.14182) 974 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.sptimg on smithi099 2024-01-27T23:47:49.936 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:49 smithi099 bash[16328]: cluster 2024-01-27T23:47:48.858627+0000 mgr.smithi099.hzjdah (mgr.14182) 975 : cluster [DBG] pgmap v661: 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-01-27T23:47:50.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: cephadm 2024-01-27T23:47:48.692127+0000 mgr.smithi099.hzjdah (mgr.14182) 971 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:50.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:50.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.jbrsjl ... 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:47:50.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.jbrsjl ... 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: cephadm 2024-01-27T23:47:48.692628+0000 mgr.smithi099.hzjdah (mgr.14182) 972 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:50.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: audit 2024-01-27T23:47:48.693230+0000 mon.smithi099 (mon.0) 905 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.jbrsjl"}]: dispatch 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: cephadm 2024-01-27T23:47:48.695077+0000 mgr.smithi099.hzjdah (mgr.14182) 973 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.jbrsjl ... 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: cephadm 2024-01-27T23:47:48.699947+0000 mgr.smithi099.hzjdah (mgr.14182) 974 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.sptimg on smithi099 2024-01-27T23:47:50.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:49 smithi142 bash[20347]: cluster 2024-01-27T23:47:48.858627+0000 mgr.smithi099.hzjdah (mgr.14182) 975 : cluster [DBG] pgmap v661: 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-01-27T23:47:52.037 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:52.037 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:34.402795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.hzgayn on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-hzgayn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.hzgayn\nDeploy daemon haproxy.nfs.foo.smithi142.hzgayn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.618328Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.hdkcfy on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-hdkcfy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.hdkcfy\nDeploy daemon haproxy.nfs.foo.smithi099.hdkcfy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:46:38.622592Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvzgbp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:52.271 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:51 smithi099 bash[16328]: cluster 2024-01-27T23:47:50.860205+0000 mgr.smithi099.hzjdah (mgr.14182) 976 : cluster [DBG] pgmap v662: 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-01-27T23:47:52.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:51 smithi142 bash[20347]: cluster 2024-01-27T23:47:50.860205+0000 mgr.smithi099.hzjdah (mgr.14182) 976 : cluster [DBG] pgmap v662: 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-01-27T23:47:52.717 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:53.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:52 smithi099 bash[16328]: audit 2024-01-27T23:47:52.028707+0000 mgr.smithi099.hzjdah (mgr.14182) 977 : audit [DBG] from='client.15264 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:53.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:52 smithi099 bash[16328]: audit 2024-01-27T23:47:52.905153+0000 mon.smithi099 (mon.0) 906 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.sptimg"}]: dispatch 2024-01-27T23:47:53.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:52 smithi142 bash[20347]: audit 2024-01-27T23:47:52.028707+0000 mgr.smithi099.hzjdah (mgr.14182) 977 : audit [DBG] from='client.15264 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:53.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:52 smithi142 bash[20347]: audit 2024-01-27T23:47:52.905153+0000 mon.smithi099 (mon.0) 906 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.sptimg"}]: dispatch 2024-01-27T23:47:53.718 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:54.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: cluster 2024-01-27T23:47:52.861944+0000 mgr.smithi099.hzjdah (mgr.14182) 978 : cluster [DBG] pgmap v663: 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-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: cephadm 2024-01-27T23:47:52.904387+0000 mgr.smithi099.hzjdah (mgr.14182) 979 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.sptimg ... 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:54.084 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.085 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.sptimg ... 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: cephadm 2024-01-27T23:47:52.904702+0000 mgr.smithi099.hzjdah (mgr.14182) 980 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: cephadm 2024-01-27T23:47:52.906298+0000 mgr.smithi099.hzjdah (mgr.14182) 981 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.086 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.sptimg ... 2024-01-27T23:47:54.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:54.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:54.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:54.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: cephadm 2024-01-27T23:47:52.908318+0000 mgr.smithi099.hzjdah (mgr.14182) 982 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:47:54.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: cephadm 2024-01-27T23:47:52.909824+0000 mgr.smithi099.hzjdah (mgr.14182) 983 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:47:54.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: cluster 2024-01-27T23:47:52.910633+0000 mgr.smithi099.hzjdah (mgr.14182) 984 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:47:54.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: cluster 2024-01-27T23:47:52.918632+0000 mon.smithi099 (mon.0) 907 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:47:54.087 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:53 smithi099 bash[16328]: audit 2024-01-27T23:47:53.779329+0000 mon.smithi099 (mon.0) 908 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:47:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: cluster 2024-01-27T23:47:52.861944+0000 mgr.smithi099.hzjdah (mgr.14182) 978 : cluster [DBG] pgmap v663: 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-01-27T23:47:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: cephadm 2024-01-27T23:47:52.904387+0000 mgr.smithi099.hzjdah (mgr.14182) 979 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.sptimg ... 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:54.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:54.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.sptimg ... 2024-01-27T23:47:54.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:54.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: cephadm 2024-01-27T23:47:52.904702+0000 mgr.smithi099.hzjdah (mgr.14182) 980 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: cephadm 2024-01-27T23:47:52.906298+0000 mgr.smithi099.hzjdah (mgr.14182) 981 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.sptimg ... 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:47:54.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:47:54.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:47:54.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: cephadm 2024-01-27T23:47:52.908318+0000 mgr.smithi099.hzjdah (mgr.14182) 982 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:47:54.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: cephadm 2024-01-27T23:47:52.909824+0000 mgr.smithi099.hzjdah (mgr.14182) 983 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:47:54.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: cluster 2024-01-27T23:47:52.910633+0000 mgr.smithi099.hzjdah (mgr.14182) 984 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:47:54.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: cluster 2024-01-27T23:47:52.918632+0000 mon.smithi099 (mon.0) 907 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:47:54.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:53 smithi142 bash[20347]: audit 2024-01-27T23:47:53.779329+0000 mon.smithi099 (mon.0) 908 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:47:56.304 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:55 smithi142 bash[20347]: cluster 2024-01-27T23:47:54.911556+0000 mgr.smithi099.hzjdah (mgr.14182) 985 : cluster [DBG] pgmap v665: 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-01-27T23:47:56.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:55 smithi099 bash[16328]: cluster 2024-01-27T23:47:54.911556+0000 mgr.smithi099.hzjdah (mgr.14182) 985 : cluster [DBG] pgmap v665: 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-01-27T23:47:57.096 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:47:57.096 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:47:57.744 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:47:58.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:57 smithi099 bash[16328]: cluster 2024-01-27T23:47:56.913088+0000 mgr.smithi099.hzjdah (mgr.14182) 986 : cluster [DBG] pgmap v666: 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-01-27T23:47:58.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:57 smithi142 bash[20347]: cluster 2024-01-27T23:47:56.913088+0000 mgr.smithi099.hzjdah (mgr.14182) 986 : cluster [DBG] pgmap v666: 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-01-27T23:47:58.745 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:47:59.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:58 smithi099 bash[16328]: audit 2024-01-27T23:47:57.087310+0000 mgr.smithi099.hzjdah (mgr.14182) 987 : audit [DBG] from='client.15268 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:47:59.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:58 smithi142 bash[20347]: audit 2024-01-27T23:47:57.087310+0000 mgr.smithi099.hzjdah (mgr.14182) 987 : audit [DBG] from='client.15268 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:00.166 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:47:59 smithi099 bash[16328]: cluster 2024-01-27T23:47:58.914356+0000 mgr.smithi099.hzjdah (mgr.14182) 988 : cluster [DBG] pgmap v667: 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-01-27T23:48:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:47:59 smithi142 bash[20347]: cluster 2024-01-27T23:47:58.914356+0000 mgr.smithi099.hzjdah (mgr.14182) 988 : cluster [DBG] pgmap v667: 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-01-27T23:48:01.863 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:01.863 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:02.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:01 smithi142 bash[20347]: cluster 2024-01-27T23:48:00.915639+0000 mgr.smithi099.hzjdah (mgr.14182) 989 : cluster [DBG] pgmap v668: 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-01-27T23:48:02.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:01 smithi099 bash[16328]: cluster 2024-01-27T23:48:00.915639+0000 mgr.smithi099.hzjdah (mgr.14182) 989 : cluster [DBG] pgmap v668: 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-01-27T23:48:02.455 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:02 smithi142 bash[20347]: audit 2024-01-27T23:48:01.853771+0000 mgr.smithi099.hzjdah (mgr.14182) 990 : audit [DBG] from='client.15272 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:03.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:02 smithi099 bash[16328]: audit 2024-01-27T23:48:01.853771+0000 mgr.smithi099.hzjdah (mgr.14182) 990 : audit [DBG] from='client.15272 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:03.457 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:04.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:03 smithi142 bash[20347]: cluster 2024-01-27T23:48:02.917174+0000 mgr.smithi099.hzjdah (mgr.14182) 991 : cluster [DBG] pgmap v669: 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-01-27T23:48:04.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:03 smithi099 bash[16328]: cluster 2024-01-27T23:48:02.917174+0000 mgr.smithi099.hzjdah (mgr.14182) 991 : cluster [DBG] pgmap v669: 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-01-27T23:48:06.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:05 smithi142 bash[20347]: cluster 2024-01-27T23:48:04.918203+0000 mgr.smithi099.hzjdah (mgr.14182) 992 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:48:06.308 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:05 smithi099 bash[16328]: cluster 2024-01-27T23:48:04.918203+0000 mgr.smithi099.hzjdah (mgr.14182) 992 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:48:06.658 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:06.658 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:07.302 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:08.303 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:08.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:08 smithi142 bash[20347]: audit 2024-01-27T23:48:06.653929+0000 mgr.smithi099.hzjdah (mgr.14182) 993 : audit [DBG] from='client.15276 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:08.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:08 smithi142 bash[20347]: cluster 2024-01-27T23:48:06.919912+0000 mgr.smithi099.hzjdah (mgr.14182) 994 : 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-01-27T23:48:08.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:08 smithi099 bash[16328]: audit 2024-01-27T23:48:06.653929+0000 mgr.smithi099.hzjdah (mgr.14182) 993 : audit [DBG] from='client.15276 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:08.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:08 smithi099 bash[16328]: cluster 2024-01-27T23:48:06.919912+0000 mgr.smithi099.hzjdah (mgr.14182) 994 : 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-01-27T23:48:10.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:10 smithi142 bash[20347]: cluster 2024-01-27T23:48:08.921556+0000 mgr.smithi099.hzjdah (mgr.14182) 995 : cluster [DBG] pgmap v672: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:10.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:10 smithi099 bash[16328]: cluster 2024-01-27T23:48:08.921556+0000 mgr.smithi099.hzjdah (mgr.14182) 995 : cluster [DBG] pgmap v672: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:11.442 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:11.442 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:12.040 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:12.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:12 smithi142 bash[20347]: cluster 2024-01-27T23:48:10.922862+0000 mgr.smithi099.hzjdah (mgr.14182) 996 : 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-01-27T23:48:12.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:12 smithi099 bash[16328]: cluster 2024-01-27T23:48:10.922862+0000 mgr.smithi099.hzjdah (mgr.14182) 996 : 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-01-27T23:48:13.042 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:13 smithi142 bash[20347]: audit 2024-01-27T23:48:11.430071+0000 mgr.smithi099.hzjdah (mgr.14182) 997 : audit [DBG] from='client.15280 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:13.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:13 smithi099 bash[16328]: audit 2024-01-27T23:48:11.430071+0000 mgr.smithi099.hzjdah (mgr.14182) 997 : audit [DBG] from='client.15280 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:14.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:14 smithi142 bash[20347]: cluster 2024-01-27T23:48:12.924765+0000 mgr.smithi099.hzjdah (mgr.14182) 998 : 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-01-27T23:48:14.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:14 smithi099 bash[16328]: cluster 2024-01-27T23:48:12.924765+0000 mgr.smithi099.hzjdah (mgr.14182) 998 : 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-01-27T23:48:16.113 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:16.113 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:16.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:16 smithi142 bash[20347]: cluster 2024-01-27T23:48:14.925814+0000 mgr.smithi099.hzjdah (mgr.14182) 999 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:48:16.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:16 smithi099 bash[16328]: cluster 2024-01-27T23:48:14.925814+0000 mgr.smithi099.hzjdah (mgr.14182) 999 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:48:16.819 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:17.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:17 smithi142 bash[20347]: audit 2024-01-27T23:48:16.102122+0000 mgr.smithi099.hzjdah (mgr.14182) 1000 : audit [DBG] from='client.15284 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:17.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:17 smithi142 bash[20347]: cluster 2024-01-27T23:48:16.927474+0000 mgr.smithi099.hzjdah (mgr.14182) 1001 : 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-01-27T23:48:17.582 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:17 smithi099 bash[16328]: audit 2024-01-27T23:48:16.102122+0000 mgr.smithi099.hzjdah (mgr.14182) 1000 : audit [DBG] from='client.15284 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:17.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:17 smithi099 bash[16328]: cluster 2024-01-27T23:48:16.927474+0000 mgr.smithi099.hzjdah (mgr.14182) 1001 : 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-01-27T23:48:17.819 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:20.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:19 smithi142 bash[20347]: cluster 2024-01-27T23:48:18.929622+0000 mgr.smithi099.hzjdah (mgr.14182) 1002 : cluster [DBG] pgmap v677: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:20.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:19 smithi099 bash[16328]: cluster 2024-01-27T23:48:18.929622+0000 mgr.smithi099.hzjdah (mgr.14182) 1002 : cluster [DBG] pgmap v677: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:21.031 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:21.032 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:21.621 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:21 smithi142 bash[20347]: cluster 2024-01-27T23:48:20.931521+0000 mgr.smithi099.hzjdah (mgr.14182) 1003 : 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-01-27T23:48:22.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:21 smithi142 bash[20347]: audit 2024-01-27T23:48:21.019808+0000 mgr.smithi099.hzjdah (mgr.14182) 1004 : audit [DBG] from='client.15288 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:22.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:21 smithi099 bash[16328]: cluster 2024-01-27T23:48:20.931521+0000 mgr.smithi099.hzjdah (mgr.14182) 1003 : 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-01-27T23:48:22.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:21 smithi099 bash[16328]: audit 2024-01-27T23:48:21.019808+0000 mgr.smithi099.hzjdah (mgr.14182) 1004 : audit [DBG] from='client.15288 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:22.622 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:24.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:23 smithi142 bash[20347]: cluster 2024-01-27T23:48:22.933564+0000 mgr.smithi099.hzjdah (mgr.14182) 1005 : 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-01-27T23:48:24.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:23 smithi099 bash[16328]: cluster 2024-01-27T23:48:22.933564+0000 mgr.smithi099.hzjdah (mgr.14182) 1005 : 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-01-27T23:48:25.751 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:25.751 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:26.082 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:26 smithi099 bash[16328]: cluster 2024-01-27T23:48:24.935056+0000 mgr.smithi099.hzjdah (mgr.14182) 1006 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:48:26.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:26 smithi142 bash[20347]: cluster 2024-01-27T23:48:24.935056+0000 mgr.smithi099.hzjdah (mgr.14182) 1006 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:48:26.374 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:27.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:27 smithi142 bash[20347]: audit 2024-01-27T23:48:25.739399+0000 mgr.smithi099.hzjdah (mgr.14182) 1007 : audit [DBG] from='client.15292 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:27.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:27 smithi099 bash[16328]: audit 2024-01-27T23:48:25.739399+0000 mgr.smithi099.hzjdah (mgr.14182) 1007 : audit [DBG] from='client.15292 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:27.375 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:28.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:28 smithi142 bash[20347]: cluster 2024-01-27T23:48:26.936611+0000 mgr.smithi099.hzjdah (mgr.14182) 1008 : 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-01-27T23:48:28.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:28 smithi099 bash[16328]: cluster 2024-01-27T23:48:26.936611+0000 mgr.smithi099.hzjdah (mgr.14182) 1008 : 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-01-27T23:48:30.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:30 smithi142 bash[20347]: cluster 2024-01-27T23:48:28.937785+0000 mgr.smithi099.hzjdah (mgr.14182) 1009 : cluster [DBG] pgmap v682: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:30.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:30 smithi099 bash[16328]: cluster 2024-01-27T23:48:28.937785+0000 mgr.smithi099.hzjdah (mgr.14182) 1009 : cluster [DBG] pgmap v682: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:30.505 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:30.505 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:31.129 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:32.129 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:32.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:32 smithi142 bash[20347]: audit 2024-01-27T23:48:30.501007+0000 mgr.smithi099.hzjdah (mgr.14182) 1010 : audit [DBG] from='client.15296 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:32.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:32 smithi142 bash[20347]: cluster 2024-01-27T23:48:30.939273+0000 mgr.smithi099.hzjdah (mgr.14182) 1011 : 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-01-27T23:48:32.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:32 smithi099 bash[16328]: audit 2024-01-27T23:48:30.501007+0000 mgr.smithi099.hzjdah (mgr.14182) 1010 : audit [DBG] from='client.15296 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:32.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:32 smithi099 bash[16328]: cluster 2024-01-27T23:48:30.939273+0000 mgr.smithi099.hzjdah (mgr.14182) 1011 : 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-01-27T23:48:34.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:34 smithi142 bash[20347]: cluster 2024-01-27T23:48:32.941217+0000 mgr.smithi099.hzjdah (mgr.14182) 1012 : 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-01-27T23:48:34.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:34 smithi099 bash[16328]: cluster 2024-01-27T23:48:32.941217+0000 mgr.smithi099.hzjdah (mgr.14182) 1012 : 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-01-27T23:48:35.342 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:35.342 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:35.990 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:36.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:36 smithi142 bash[20347]: cluster 2024-01-27T23:48:34.942867+0000 mgr.smithi099.hzjdah (mgr.14182) 1013 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:48:36.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:36 smithi099 bash[16328]: cluster 2024-01-27T23:48:34.942867+0000 mgr.smithi099.hzjdah (mgr.14182) 1013 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:48:36.991 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:37.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:37 smithi142 bash[20347]: audit 2024-01-27T23:48:35.337105+0000 mgr.smithi099.hzjdah (mgr.14182) 1014 : audit [DBG] from='client.15300 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:37.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:37 smithi142 bash[20347]: cluster 2024-01-27T23:48:36.944019+0000 mgr.smithi099.hzjdah (mgr.14182) 1015 : cluster [DBG] pgmap v686: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:37.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:37 smithi099 bash[16328]: audit 2024-01-27T23:48:35.337105+0000 mgr.smithi099.hzjdah (mgr.14182) 1014 : audit [DBG] from='client.15300 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:37.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:37 smithi099 bash[16328]: cluster 2024-01-27T23:48:36.944019+0000 mgr.smithi099.hzjdah (mgr.14182) 1015 : cluster [DBG] pgmap v686: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:40.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:39 smithi099 bash[16328]: cluster 2024-01-27T23:48:38.944897+0000 mgr.smithi099.hzjdah (mgr.14182) 1016 : cluster [DBG] pgmap v687: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:40.189 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:40.190 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:40.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:39 smithi142 bash[20347]: cluster 2024-01-27T23:48:38.944897+0000 mgr.smithi099.hzjdah (mgr.14182) 1016 : cluster [DBG] pgmap v687: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:40.841 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:41.842 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:42.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:41 smithi142 bash[20347]: audit 2024-01-27T23:48:40.179911+0000 mgr.smithi099.hzjdah (mgr.14182) 1017 : audit [DBG] from='client.15304 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:42.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:41 smithi142 bash[20347]: cluster 2024-01-27T23:48:40.946394+0000 mgr.smithi099.hzjdah (mgr.14182) 1018 : cluster [DBG] pgmap v688: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:42.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:41 smithi099 bash[16328]: audit 2024-01-27T23:48:40.179911+0000 mgr.smithi099.hzjdah (mgr.14182) 1017 : audit [DBG] from='client.15304 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:42.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:41 smithi099 bash[16328]: cluster 2024-01-27T23:48:40.946394+0000 mgr.smithi099.hzjdah (mgr.14182) 1018 : cluster [DBG] pgmap v688: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:44.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:43 smithi142 bash[20347]: cluster 2024-01-27T23:48:42.948319+0000 mgr.smithi099.hzjdah (mgr.14182) 1019 : cluster [DBG] pgmap v689: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:44.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:43 smithi099 bash[16328]: cluster 2024-01-27T23:48:42.948319+0000 mgr.smithi099.hzjdah (mgr.14182) 1019 : cluster [DBG] pgmap v689: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:45.122 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:45.122 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:45.725 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:46.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:45 smithi099 bash[16328]: cluster 2024-01-27T23:48:44.949496+0000 mgr.smithi099.hzjdah (mgr.14182) 1020 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:48:46.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:45 smithi142 bash[20347]: cluster 2024-01-27T23:48:44.949496+0000 mgr.smithi099.hzjdah (mgr.14182) 1020 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:48:46.726 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:47.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:46 smithi099 bash[16328]: audit 2024-01-27T23:48:45.118187+0000 mgr.smithi099.hzjdah (mgr.14182) 1021 : audit [DBG] from='client.15308 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:47.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:46 smithi142 bash[20347]: audit 2024-01-27T23:48:45.118187+0000 mgr.smithi099.hzjdah (mgr.14182) 1021 : audit [DBG] from='client.15308 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:48.169 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:47 smithi099 bash[16328]: cluster 2024-01-27T23:48:46.950372+0000 mgr.smithi099.hzjdah (mgr.14182) 1022 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:48.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:47 smithi142 bash[20347]: cluster 2024-01-27T23:48:46.950372+0000 mgr.smithi099.hzjdah (mgr.14182) 1022 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:50.049 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:50.049 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:50.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:49 smithi142 bash[20347]: cluster 2024-01-27T23:48:48.951973+0000 mgr.smithi099.hzjdah (mgr.14182) 1023 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:50.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:49 smithi099 bash[16328]: cluster 2024-01-27T23:48:48.951973+0000 mgr.smithi099.hzjdah (mgr.14182) 1023 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:50.651 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:50 smithi142 bash[20347]: audit 2024-01-27T23:48:50.040506+0000 mgr.smithi099.hzjdah (mgr.14182) 1024 : audit [DBG] from='client.15312 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:50 smithi099 bash[16328]: audit 2024-01-27T23:48:50.040506+0000 mgr.smithi099.hzjdah (mgr.14182) 1024 : audit [DBG] from='client.15312 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:51.652 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:52.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:52 smithi142 bash[20347]: cluster 2024-01-27T23:48:50.953626+0000 mgr.smithi099.hzjdah (mgr.14182) 1025 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:52.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:52 smithi099 bash[16328]: cluster 2024-01-27T23:48:50.953626+0000 mgr.smithi099.hzjdah (mgr.14182) 1025 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:53.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:53 smithi099 bash[16328]: audit 2024-01-27T23:48:52.913382+0000 mon.smithi099 (mon.0) 909 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:48:53.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:53 smithi142 bash[20347]: audit 2024-01-27T23:48:52.913382+0000 mon.smithi099 (mon.0) 909 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:48:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:54 smithi142 bash[20347]: cluster 2024-01-27T23:48:52.955229+0000 mgr.smithi099.hzjdah (mgr.14182) 1026 : cluster [DBG] pgmap v694: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:54 smithi142 bash[20347]: audit 2024-01-27T23:48:53.221212+0000 mon.smithi099 (mon.0) 910 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:48:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:54 smithi142 bash[20347]: audit 2024-01-27T23:48:53.519879+0000 mon.smithi099 (mon.0) 911 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:48:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:54 smithi142 bash[20347]: audit 2024-01-27T23:48:53.521665+0000 mon.smithi099 (mon.0) 912 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:48:54.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:54 smithi142 bash[20347]: audit 2024-01-27T23:48:53.531371+0000 mon.smithi099 (mon.0) 913 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:48:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:54 smithi142 bash[20347]: audit 2024-01-27T23:48:53.539652+0000 mon.smithi099 (mon.0) 914 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:48:54.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:54 smithi142 bash[20347]: audit 2024-01-27T23:48:53.551741+0000 mon.smithi099 (mon.0) 915 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:48:54.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:54 smithi099 bash[16328]: cluster 2024-01-27T23:48:52.955229+0000 mgr.smithi099.hzjdah (mgr.14182) 1026 : cluster [DBG] pgmap v694: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:48:54.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:54 smithi099 bash[16328]: audit 2024-01-27T23:48:53.221212+0000 mon.smithi099 (mon.0) 910 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:48:54.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:54 smithi099 bash[16328]: audit 2024-01-27T23:48:53.519879+0000 mon.smithi099 (mon.0) 911 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:48:54.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:54 smithi099 bash[16328]: audit 2024-01-27T23:48:53.521665+0000 mon.smithi099 (mon.0) 912 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:48:54.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:54 smithi099 bash[16328]: audit 2024-01-27T23:48:53.531371+0000 mon.smithi099 (mon.0) 913 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:48:54.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:54 smithi099 bash[16328]: audit 2024-01-27T23:48:53.539652+0000 mon.smithi099 (mon.0) 914 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:48:54.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:54 smithi099 bash[16328]: audit 2024-01-27T23:48:53.551741+0000 mon.smithi099 (mon.0) 915 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:48:54.677 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:54.678 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:46:38.626628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.fqfqmm on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:48:55.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:55 smithi142 bash[20347]: cluster 2024-01-27T23:48:53.532671+0000 mgr.smithi099.hzjdah (mgr.14182) 1027 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:48:55.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:55 smithi142 bash[20347]: cephadm 2024-01-27T23:48:53.558299+0000 mgr.smithi099.hzjdah (mgr.14182) 1028 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.biybae on smithi142 2024-01-27T23:48:55.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:55 smithi142 bash[20347]: cluster 2024-01-27T23:48:54.528301+0000 mon.smithi099 (mon.0) 916 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:48:55.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:55 smithi142 bash[20347]: cluster 2024-01-27T23:48:54.528361+0000 mon.smithi099 (mon.0) 917 : cluster [INF] Cluster is now healthy 2024-01-27T23:48:55.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:55 smithi099 bash[16328]: cluster 2024-01-27T23:48:53.532671+0000 mgr.smithi099.hzjdah (mgr.14182) 1027 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:48:55.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:55 smithi099 bash[16328]: cephadm 2024-01-27T23:48:53.558299+0000 mgr.smithi099.hzjdah (mgr.14182) 1028 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.biybae on smithi142 2024-01-27T23:48:55.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:55 smithi099 bash[16328]: cluster 2024-01-27T23:48:54.528301+0000 mon.smithi099 (mon.0) 916 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:48:55.327 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:55 smithi099 bash[16328]: cluster 2024-01-27T23:48:54.528361+0000 mon.smithi099 (mon.0) 917 : cluster [INF] Cluster is now healthy 2024-01-27T23:48:55.328 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:48:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:56 smithi142 bash[20347]: audit 2024-01-27T23:48:54.673547+0000 mgr.smithi099.hzjdah (mgr.14182) 1029 : audit [DBG] from='client.15316 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:56.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:56 smithi142 bash[20347]: audit 2024-01-27T23:48:55.395518+0000 mon.smithi099 (mon.0) 918 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:48:56.329 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:48:56.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:56 smithi099 bash[16328]: audit 2024-01-27T23:48:54.673547+0000 mgr.smithi099.hzjdah (mgr.14182) 1029 : audit [DBG] from='client.15316 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:48:56.332 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:56 smithi099 bash[16328]: audit 2024-01-27T23:48:55.395518+0000 mon.smithi099 (mon.0) 918 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:48:57.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:57 smithi142 bash[20347]: cluster 2024-01-27T23:48:55.533742+0000 mgr.smithi099.hzjdah (mgr.14182) 1030 : cluster [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:48:57.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:57 smithi099 bash[16328]: cluster 2024-01-27T23:48:55.533742+0000 mgr.smithi099.hzjdah (mgr.14182) 1030 : cluster [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:48:58.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:58 smithi142 bash[20347]: audit 2024-01-27T23:48:57.676774+0000 mon.smithi099 (mon.0) 919 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.biybae"}]: dispatch 2024-01-27T23:48:58.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:58 smithi099 bash[16328]: audit 2024-01-27T23:48:57.676774+0000 mon.smithi099 (mon.0) 919 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.biybae"}]: dispatch 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: cluster 2024-01-27T23:48:57.535463+0000 mgr.smithi099.hzjdah (mgr.14182) 1031 : cluster [DBG] pgmap v697: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: cephadm 2024-01-27T23:48:57.675663+0000 mgr.smithi099.hzjdah (mgr.14182) 1032 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.biybae ... 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:48:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.biybae ... 2024-01-27T23:48:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: cephadm 2024-01-27T23:48:57.676104+0000 mgr.smithi099.hzjdah (mgr.14182) 1033 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: cephadm 2024-01-27T23:48:57.678523+0000 mgr.smithi099.hzjdah (mgr.14182) 1034 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.biybae ... 2024-01-27T23:48:59.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:48:59.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:48:59.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:48:59.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:48:59 smithi142 bash[20347]: cephadm 2024-01-27T23:48:57.684335+0000 mgr.smithi099.hzjdah (mgr.14182) 1035 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.jiawuh on smithi099 2024-01-27T23:48:59.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: cluster 2024-01-27T23:48:57.535463+0000 mgr.smithi099.hzjdah (mgr.14182) 1031 : cluster [DBG] pgmap v697: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: cephadm 2024-01-27T23:48:57.675663+0000 mgr.smithi099.hzjdah (mgr.14182) 1032 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.biybae ... 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.biybae ... 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:48:59.325 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: cephadm 2024-01-27T23:48:57.676104+0000 mgr.smithi099.hzjdah (mgr.14182) 1033 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: cephadm 2024-01-27T23:48:57.678523+0000 mgr.smithi099.hzjdah (mgr.14182) 1034 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.biybae ... 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:48:59.326 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:48:59 smithi099 bash[16328]: cephadm 2024-01-27T23:48:57.684335+0000 mgr.smithi099.hzjdah (mgr.14182) 1035 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.jiawuh on smithi099 2024-01-27T23:48:59.781 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:48:59.781 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:48.694750Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.jbrsjl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-jbrsjl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.jbrsjl\nDeploy daemon haproxy.nfs.foo.smithi142.jbrsjl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.906103Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.sptimg on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-sptimg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.sptimg\nDeploy daemon haproxy.nfs.foo.smithi099.sptimg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:47:52.908211Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pmcmgv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:00.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:00 smithi099 bash[16328]: cluster 2024-01-27T23:48:59.536547+0000 mgr.smithi099.hzjdah (mgr.14182) 1036 : cluster [DBG] pgmap v698: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:49:00.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:00 smithi099 bash[16328]: audit 2024-01-27T23:48:59.770317+0000 mgr.smithi099.hzjdah (mgr.14182) 1037 : audit [DBG] from='client.15320 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:00.507 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:00.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:00 smithi142 bash[20347]: cluster 2024-01-27T23:48:59.536547+0000 mgr.smithi099.hzjdah (mgr.14182) 1036 : cluster [DBG] pgmap v698: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:49:00.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:00 smithi142 bash[20347]: audit 2024-01-27T23:48:59.770317+0000 mgr.smithi099.hzjdah (mgr.14182) 1037 : audit [DBG] from='client.15320 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:01.508 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:01.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:01 smithi099 bash[16328]: audit 2024-01-27T23:49:01.512069+0000 mon.smithi099 (mon.0) 920 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.jiawuh"}]: dispatch 2024-01-27T23:49:02.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:01 smithi142 bash[20347]: audit 2024-01-27T23:49:01.512069+0000 mon.smithi099 (mon.0) 920 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.jiawuh"}]: dispatch 2024-01-27T23:49:02.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: cephadm 2024-01-27T23:49:01.510921+0000 mgr.smithi099.hzjdah (mgr.14182) 1038 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.jiawuh ... 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:02.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.jiawuh ... 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:49:02.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: cephadm 2024-01-27T23:49:01.511420+0000 mgr.smithi099.hzjdah (mgr.14182) 1039 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: cephadm 2024-01-27T23:49:01.513821+0000 mgr.smithi099.hzjdah (mgr.14182) 1040 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.jiawuh ... 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:49:02.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:49:02.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:02.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: cephadm 2024-01-27T23:49:01.519153+0000 mgr.smithi099.hzjdah (mgr.14182) 1041 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:49:02.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: cephadm 2024-01-27T23:49:01.522735+0000 mgr.smithi099.hzjdah (mgr.14182) 1042 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:49:02.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: cluster 2024-01-27T23:49:01.524408+0000 mgr.smithi099.hzjdah (mgr.14182) 1043 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:49:02.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:02 smithi099 bash[16328]: cluster 2024-01-27T23:49:01.576861+0000 mon.smithi099 (mon.0) 921 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:49:03.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: cephadm 2024-01-27T23:49:01.510921+0000 mgr.smithi099.hzjdah (mgr.14182) 1038 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:03.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:49:03.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:03.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:03.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:49:03.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:03.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.jiawuh ... 2024-01-27T23:49:03.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:03.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:49:03.056 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:03.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.jiawuh ... 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: cephadm 2024-01-27T23:49:01.511420+0000 mgr.smithi099.hzjdah (mgr.14182) 1039 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: cephadm 2024-01-27T23:49:01.513821+0000 mgr.smithi099.hzjdah (mgr.14182) 1040 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.jiawuh ... 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:03.058 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:49:03.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:49:03.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:49:03.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:49:03.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: cephadm 2024-01-27T23:49:01.519153+0000 mgr.smithi099.hzjdah (mgr.14182) 1041 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:49:03.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: cephadm 2024-01-27T23:49:01.522735+0000 mgr.smithi099.hzjdah (mgr.14182) 1042 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:49:03.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: cluster 2024-01-27T23:49:01.524408+0000 mgr.smithi099.hzjdah (mgr.14182) 1043 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:49:03.059 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:02 smithi142 bash[20347]: cluster 2024-01-27T23:49:01.576861+0000 mon.smithi099 (mon.0) 921 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:49:04.744 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:04.744 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:05.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:04 smithi099 bash[16328]: cluster 2024-01-27T23:49:03.526279+0000 mgr.smithi099.hzjdah (mgr.14182) 1044 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:49:05.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:04 smithi099 bash[16328]: audit 2024-01-27T23:49:03.839885+0000 mon.smithi099 (mon.0) 922 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:49:05.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:04 smithi142 bash[20347]: cluster 2024-01-27T23:49:03.526279+0000 mgr.smithi099.hzjdah (mgr.14182) 1044 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:49:05.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:04 smithi142 bash[20347]: audit 2024-01-27T23:49:03.839885+0000 mon.smithi099 (mon.0) 922 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:49:05.428 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:06.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:05 smithi142 bash[20347]: audit 2024-01-27T23:49:04.734214+0000 mgr.smithi099.hzjdah (mgr.14182) 1045 : audit [DBG] from='client.15324 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:06.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:05 smithi099 bash[16328]: audit 2024-01-27T23:49:04.734214+0000 mgr.smithi099.hzjdah (mgr.14182) 1045 : audit [DBG] from='client.15324 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:06.430 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:07.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:06 smithi142 bash[20347]: cluster 2024-01-27T23:49:05.527645+0000 mgr.smithi099.hzjdah (mgr.14182) 1046 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:07.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:06 smithi099 bash[16328]: cluster 2024-01-27T23:49:05.527645+0000 mgr.smithi099.hzjdah (mgr.14182) 1046 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:09.265 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:08 smithi099 bash[16328]: cluster 2024-01-27T23:49:07.529555+0000 mgr.smithi099.hzjdah (mgr.14182) 1047 : 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-01-27T23:49:09.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:08 smithi142 bash[20347]: cluster 2024-01-27T23:49:07.529555+0000 mgr.smithi099.hzjdah (mgr.14182) 1047 : 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-01-27T23:49:09.703 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:09.703 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:10.312 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:11.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:10 smithi142 bash[20347]: cluster 2024-01-27T23:49:09.530892+0000 mgr.smithi099.hzjdah (mgr.14182) 1048 : cluster [DBG] pgmap v703: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:11.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:10 smithi142 bash[20347]: audit 2024-01-27T23:49:09.694754+0000 mgr.smithi099.hzjdah (mgr.14182) 1049 : audit [DBG] from='client.15328 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:11.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:10 smithi142 bash[20347]: audit 2024-01-27T23:49:10.395963+0000 mon.smithi099 (mon.0) 923 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:49:11.313 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:11.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:10 smithi099 bash[16328]: cluster 2024-01-27T23:49:09.530892+0000 mgr.smithi099.hzjdah (mgr.14182) 1048 : cluster [DBG] pgmap v703: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:11.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:10 smithi099 bash[16328]: audit 2024-01-27T23:49:09.694754+0000 mgr.smithi099.hzjdah (mgr.14182) 1049 : audit [DBG] from='client.15328 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:11.324 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:10 smithi099 bash[16328]: audit 2024-01-27T23:49:10.395963+0000 mon.smithi099 (mon.0) 923 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:49:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:12 smithi142 bash[20347]: cluster 2024-01-27T23:49:11.532181+0000 mgr.smithi099.hzjdah (mgr.14182) 1050 : 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-01-27T23:49:13.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:12 smithi099 bash[16328]: cluster 2024-01-27T23:49:11.532181+0000 mgr.smithi099.hzjdah (mgr.14182) 1050 : 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-01-27T23:49:14.369 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:14.369 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:14.960 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:15.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:14 smithi142 bash[20347]: cluster 2024-01-27T23:49:13.534071+0000 mgr.smithi099.hzjdah (mgr.14182) 1051 : 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-01-27T23:49:15.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:14 smithi099 bash[16328]: cluster 2024-01-27T23:49:13.534071+0000 mgr.smithi099.hzjdah (mgr.14182) 1051 : 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-01-27T23:49:15.961 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:16.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:15 smithi142 bash[20347]: audit 2024-01-27T23:49:14.365068+0000 mgr.smithi099.hzjdah (mgr.14182) 1052 : audit [DBG] from='client.15332 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:16.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:15 smithi099 bash[16328]: audit 2024-01-27T23:49:14.365068+0000 mgr.smithi099.hzjdah (mgr.14182) 1052 : audit [DBG] from='client.15332 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:17.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:16 smithi099 bash[16328]: cluster 2024-01-27T23:49:15.535436+0000 mgr.smithi099.hzjdah (mgr.14182) 1053 : cluster [DBG] pgmap v706: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:16 smithi142 bash[20347]: cluster 2024-01-27T23:49:15.535436+0000 mgr.smithi099.hzjdah (mgr.14182) 1053 : cluster [DBG] pgmap v706: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:19.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:18 smithi099 bash[16328]: cluster 2024-01-27T23:49:17.536711+0000 mgr.smithi099.hzjdah (mgr.14182) 1054 : 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-01-27T23:49:19.184 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:19.184 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:19.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:18 smithi142 bash[20347]: cluster 2024-01-27T23:49:17.536711+0000 mgr.smithi099.hzjdah (mgr.14182) 1054 : 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-01-27T23:49:19.782 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:20.783 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:21.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:20 smithi099 bash[16328]: audit 2024-01-27T23:49:19.174775+0000 mgr.smithi099.hzjdah (mgr.14182) 1055 : audit [DBG] from='client.15336 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:21.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:20 smithi099 bash[16328]: cluster 2024-01-27T23:49:19.538168+0000 mgr.smithi099.hzjdah (mgr.14182) 1056 : cluster [DBG] pgmap v708: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:20 smithi142 bash[20347]: audit 2024-01-27T23:49:19.174775+0000 mgr.smithi099.hzjdah (mgr.14182) 1055 : audit [DBG] from='client.15336 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:20 smithi142 bash[20347]: cluster 2024-01-27T23:49:19.538168+0000 mgr.smithi099.hzjdah (mgr.14182) 1056 : cluster [DBG] pgmap v708: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:23.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:22 smithi142 bash[20347]: cluster 2024-01-27T23:49:21.539387+0000 mgr.smithi099.hzjdah (mgr.14182) 1057 : 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-01-27T23:49:23.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:22 smithi099 bash[16328]: cluster 2024-01-27T23:49:21.539387+0000 mgr.smithi099.hzjdah (mgr.14182) 1057 : 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-01-27T23:49:24.053 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:24.054 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:24.687 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:25 smithi142 bash[20347]: cluster 2024-01-27T23:49:23.540812+0000 mgr.smithi099.hzjdah (mgr.14182) 1058 : 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-01-27T23:49:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:25 smithi142 bash[20347]: audit 2024-01-27T23:49:24.047330+0000 mgr.smithi099.hzjdah (mgr.14182) 1059 : audit [DBG] from='client.15340 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:25.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:25 smithi099 bash[16328]: cluster 2024-01-27T23:49:23.540812+0000 mgr.smithi099.hzjdah (mgr.14182) 1058 : 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-01-27T23:49:25.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:25 smithi099 bash[16328]: audit 2024-01-27T23:49:24.047330+0000 mgr.smithi099.hzjdah (mgr.14182) 1059 : audit [DBG] from='client.15340 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:25.688 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:27.054 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:27 smithi099 bash[16328]: cluster 2024-01-27T23:49:25.542631+0000 mgr.smithi099.hzjdah (mgr.14182) 1060 : cluster [DBG] pgmap v711: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:27.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:27 smithi142 bash[20347]: cluster 2024-01-27T23:49:25.542631+0000 mgr.smithi099.hzjdah (mgr.14182) 1060 : cluster [DBG] pgmap v711: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:28.803 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:28.804 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:29.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:29 smithi142 bash[20347]: cluster 2024-01-27T23:49:27.544602+0000 mgr.smithi099.hzjdah (mgr.14182) 1061 : 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-01-27T23:49:29.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:29 smithi099 bash[16328]: cluster 2024-01-27T23:49:27.544602+0000 mgr.smithi099.hzjdah (mgr.14182) 1061 : 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-01-27T23:49:29.424 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:30.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:30 smithi142 bash[20347]: audit 2024-01-27T23:49:28.793570+0000 mgr.smithi099.hzjdah (mgr.14182) 1062 : audit [DBG] from='client.15344 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:30.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:30 smithi099 bash[16328]: audit 2024-01-27T23:49:28.793570+0000 mgr.smithi099.hzjdah (mgr.14182) 1062 : audit [DBG] from='client.15344 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:30.425 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:31 smithi142 bash[20347]: cluster 2024-01-27T23:49:29.546014+0000 mgr.smithi099.hzjdah (mgr.14182) 1063 : cluster [DBG] pgmap v713: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:31.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:31 smithi099 bash[16328]: cluster 2024-01-27T23:49:29.546014+0000 mgr.smithi099.hzjdah (mgr.14182) 1063 : cluster [DBG] pgmap v713: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:33.268 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:33 smithi099 bash[16328]: cluster 2024-01-27T23:49:31.547601+0000 mgr.smithi099.hzjdah (mgr.14182) 1064 : 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-01-27T23:49:33.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:33 smithi142 bash[20347]: cluster 2024-01-27T23:49:31.547601+0000 mgr.smithi099.hzjdah (mgr.14182) 1064 : 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-01-27T23:49:33.730 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:33.730 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:34.360 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:35 smithi142 bash[20347]: cluster 2024-01-27T23:49:33.549354+0000 mgr.smithi099.hzjdah (mgr.14182) 1065 : 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-01-27T23:49:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:35 smithi142 bash[20347]: audit 2024-01-27T23:49:33.725765+0000 mgr.smithi099.hzjdah (mgr.14182) 1066 : audit [DBG] from='client.15348 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:35 smithi099 bash[16328]: cluster 2024-01-27T23:49:33.549354+0000 mgr.smithi099.hzjdah (mgr.14182) 1065 : 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-01-27T23:49:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:35 smithi099 bash[16328]: audit 2024-01-27T23:49:33.725765+0000 mgr.smithi099.hzjdah (mgr.14182) 1066 : audit [DBG] from='client.15348 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:35.361 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:37.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:37 smithi142 bash[20347]: cluster 2024-01-27T23:49:35.550664+0000 mgr.smithi099.hzjdah (mgr.14182) 1067 : cluster [DBG] pgmap v716: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:37.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:37 smithi099 bash[16328]: cluster 2024-01-27T23:49:35.550664+0000 mgr.smithi099.hzjdah (mgr.14182) 1067 : cluster [DBG] pgmap v716: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:38.623 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:38.623 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:39.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:39 smithi142 bash[20347]: cluster 2024-01-27T23:49:37.552476+0000 mgr.smithi099.hzjdah (mgr.14182) 1068 : 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-01-27T23:49:39.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:39 smithi099 bash[16328]: cluster 2024-01-27T23:49:37.552476+0000 mgr.smithi099.hzjdah (mgr.14182) 1068 : 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-01-27T23:49:39.373 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:40 smithi099 bash[16328]: audit 2024-01-27T23:49:38.619056+0000 mgr.smithi099.hzjdah (mgr.14182) 1069 : audit [DBG] from='client.15352 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:40.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:40 smithi099 bash[16328]: cluster 2024-01-27T23:49:39.553930+0000 mgr.smithi099.hzjdah (mgr.14182) 1070 : cluster [DBG] pgmap v718: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:40.373 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:40.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:40 smithi142 bash[20347]: audit 2024-01-27T23:49:38.619056+0000 mgr.smithi099.hzjdah (mgr.14182) 1069 : audit [DBG] from='client.15352 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:40.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:40 smithi142 bash[20347]: cluster 2024-01-27T23:49:39.553930+0000 mgr.smithi099.hzjdah (mgr.14182) 1070 : cluster [DBG] pgmap v718: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:43.055 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:42 smithi142 bash[20347]: cluster 2024-01-27T23:49:41.555568+0000 mgr.smithi099.hzjdah (mgr.14182) 1071 : 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-01-27T23:49:43.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:42 smithi099 bash[16328]: cluster 2024-01-27T23:49:41.555568+0000 mgr.smithi099.hzjdah (mgr.14182) 1071 : 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-01-27T23:49:43.767 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:43.767 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:44.453 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:45.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:44 smithi142 bash[20347]: cluster 2024-01-27T23:49:43.556920+0000 mgr.smithi099.hzjdah (mgr.14182) 1072 : cluster [DBG] pgmap v720: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:45.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:44 smithi142 bash[20347]: audit 2024-01-27T23:49:43.755293+0000 mgr.smithi099.hzjdah (mgr.14182) 1073 : audit [DBG] from='client.15356 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:45.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:44 smithi099 bash[16328]: cluster 2024-01-27T23:49:43.556920+0000 mgr.smithi099.hzjdah (mgr.14182) 1072 : cluster [DBG] pgmap v720: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:45.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:44 smithi099 bash[16328]: audit 2024-01-27T23:49:43.755293+0000 mgr.smithi099.hzjdah (mgr.14182) 1073 : audit [DBG] from='client.15356 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:45.454 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:47.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:46 smithi142 bash[20347]: cluster 2024-01-27T23:49:45.557811+0000 mgr.smithi099.hzjdah (mgr.14182) 1074 : cluster [DBG] pgmap v721: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:47.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:46 smithi099 bash[16328]: cluster 2024-01-27T23:49:45.557811+0000 mgr.smithi099.hzjdah (mgr.14182) 1074 : cluster [DBG] pgmap v721: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:48.639 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:48.639 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:49.243 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:48 smithi099 bash[16328]: cluster 2024-01-27T23:49:47.559677+0000 mgr.smithi099.hzjdah (mgr.14182) 1075 : cluster [DBG] pgmap v722: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:49.244 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:49.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:48 smithi142 bash[20347]: cluster 2024-01-27T23:49:47.559677+0000 mgr.smithi099.hzjdah (mgr.14182) 1075 : cluster [DBG] pgmap v722: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:50.245 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:50.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:49 smithi099 bash[16328]: audit 2024-01-27T23:49:48.630232+0000 mgr.smithi099.hzjdah (mgr.14182) 1076 : audit [DBG] from='client.15360 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:50.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:49 smithi142 bash[20347]: audit 2024-01-27T23:49:48.630232+0000 mgr.smithi099.hzjdah (mgr.14182) 1076 : audit [DBG] from='client.15360 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:51.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:50 smithi142 bash[20347]: cluster 2024-01-27T23:49:49.561054+0000 mgr.smithi099.hzjdah (mgr.14182) 1077 : cluster [DBG] pgmap v723: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:50 smithi099 bash[16328]: cluster 2024-01-27T23:49:49.561054+0000 mgr.smithi099.hzjdah (mgr.14182) 1077 : cluster [DBG] pgmap v723: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:53.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:52 smithi142 bash[20347]: cluster 2024-01-27T23:49:51.562327+0000 mgr.smithi099.hzjdah (mgr.14182) 1078 : cluster [DBG] pgmap v724: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:53.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:52 smithi099 bash[16328]: cluster 2024-01-27T23:49:51.562327+0000 mgr.smithi099.hzjdah (mgr.14182) 1078 : cluster [DBG] pgmap v724: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:53.456 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:53.456 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:54.090 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:55.091 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:49:55.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:55 smithi142 bash[20347]: audit 2024-01-27T23:49:53.447889+0000 mgr.smithi099.hzjdah (mgr.14182) 1079 : audit [DBG] from='client.15364 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:55.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:55 smithi142 bash[20347]: cluster 2024-01-27T23:49:53.564096+0000 mgr.smithi099.hzjdah (mgr.14182) 1080 : cluster [DBG] pgmap v725: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:55.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:55 smithi099 bash[16328]: audit 2024-01-27T23:49:53.447889+0000 mgr.smithi099.hzjdah (mgr.14182) 1079 : audit [DBG] from='client.15364 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:49:55.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:55 smithi099 bash[16328]: cluster 2024-01-27T23:49:53.564096+0000 mgr.smithi099.hzjdah (mgr.14182) 1080 : cluster [DBG] pgmap v725: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:57.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:57 smithi142 bash[20347]: cluster 2024-01-27T23:49:55.565544+0000 mgr.smithi099.hzjdah (mgr.14182) 1081 : cluster [DBG] pgmap v726: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:57.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:57 smithi099 bash[16328]: cluster 2024-01-27T23:49:55.565544+0000 mgr.smithi099.hzjdah (mgr.14182) 1081 : cluster [DBG] pgmap v726: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:49:58.351 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:49:58.351 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:49:58.947 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:49:59.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:49:59 smithi142 bash[20347]: cluster 2024-01-27T23:49:57.567465+0000 mgr.smithi099.hzjdah (mgr.14182) 1082 : cluster [DBG] pgmap v727: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:59.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:49:59 smithi099 bash[16328]: cluster 2024-01-27T23:49:57.567465+0000 mgr.smithi099.hzjdah (mgr.14182) 1082 : cluster [DBG] pgmap v727: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:49:59.948 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:00 smithi142 bash[20347]: audit 2024-01-27T23:49:58.347002+0000 mgr.smithi099.hzjdah (mgr.14182) 1083 : audit [DBG] from='client.15368 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:00.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:00 smithi142 bash[20347]: cluster 2024-01-27T23:50:00.000156+0000 mon.smithi099 (mon.0) 924 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2024-01-27T23:50:00.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:00 smithi099 bash[16328]: audit 2024-01-27T23:49:58.347002+0000 mgr.smithi099.hzjdah (mgr.14182) 1083 : audit [DBG] from='client.15368 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:00.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:00 smithi099 bash[16328]: cluster 2024-01-27T23:50:00.000156+0000 mon.smithi099 (mon.0) 924 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2024-01-27T23:50:01.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:01 smithi142 bash[20347]: cluster 2024-01-27T23:49:59.569098+0000 mgr.smithi099.hzjdah (mgr.14182) 1084 : cluster [DBG] pgmap v728: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:01.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:01 smithi099 bash[16328]: cluster 2024-01-27T23:49:59.569098+0000 mgr.smithi099.hzjdah (mgr.14182) 1084 : cluster [DBG] pgmap v728: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:02.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:02 smithi142 bash[20347]: audit 2024-01-27T23:50:01.527869+0000 mon.smithi099 (mon.0) 925 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:50:02.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:02 smithi142 bash[20347]: audit 2024-01-27T23:50:01.827985+0000 mon.smithi099 (mon.0) 926 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:50:02.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:02 smithi142 bash[20347]: audit 2024-01-27T23:50:01.829280+0000 mon.smithi099 (mon.0) 927 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:50:02.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:02 smithi142 bash[20347]: audit 2024-01-27T23:50:01.837397+0000 mon.smithi099 (mon.0) 928 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:50:02.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:02 smithi142 bash[20347]: audit 2024-01-27T23:50:01.844639+0000 mon.smithi099 (mon.0) 929 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:50:02.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:02 smithi142 bash[20347]: audit 2024-01-27T23:50:01.856534+0000 mon.smithi099 (mon.0) 930 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:50:02.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:02 smithi099 bash[16328]: audit 2024-01-27T23:50:01.527869+0000 mon.smithi099 (mon.0) 925 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:50:02.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:02 smithi099 bash[16328]: audit 2024-01-27T23:50:01.827985+0000 mon.smithi099 (mon.0) 926 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:50:02.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:02 smithi099 bash[16328]: audit 2024-01-27T23:50:01.829280+0000 mon.smithi099 (mon.0) 927 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:50:02.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:02 smithi099 bash[16328]: audit 2024-01-27T23:50:01.837397+0000 mon.smithi099 (mon.0) 928 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:50:02.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:02 smithi099 bash[16328]: audit 2024-01-27T23:50:01.844639+0000 mon.smithi099 (mon.0) 929 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:50:02.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:02 smithi099 bash[16328]: audit 2024-01-27T23:50:01.856534+0000 mon.smithi099 (mon.0) 930 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:50:03.046 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:03 smithi099 bash[16328]: cluster 2024-01-27T23:50:01.570652+0000 mgr.smithi099.hzjdah (mgr.14182) 1085 : cluster [DBG] pgmap v729: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:03.238 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:03.238 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:47:52.909731Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.evqlkj on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:03.302 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:03 smithi099 bash[16328]: cluster 2024-01-27T23:50:01.838362+0000 mgr.smithi099.hzjdah (mgr.14182) 1086 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:50:03.303 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:03 smithi099 bash[16328]: cephadm 2024-01-27T23:50:01.859594+0000 mgr.smithi099.hzjdah (mgr.14182) 1087 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.udtzeq on smithi142 2024-01-27T23:50:03.303 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:03 smithi099 bash[16328]: cluster 2024-01-27T23:50:02.029392+0000 mon.smithi099 (mon.0) 931 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:50:03.303 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:03 smithi099 bash[16328]: cluster 2024-01-27T23:50:02.029497+0000 mon.smithi099 (mon.0) 932 : cluster [INF] Cluster is now healthy 2024-01-27T23:50:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:03 smithi142 bash[20347]: cluster 2024-01-27T23:50:01.570652+0000 mgr.smithi099.hzjdah (mgr.14182) 1085 : cluster [DBG] pgmap v729: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:03 smithi142 bash[20347]: cluster 2024-01-27T23:50:01.838362+0000 mgr.smithi099.hzjdah (mgr.14182) 1086 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:50:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:03 smithi142 bash[20347]: cephadm 2024-01-27T23:50:01.859594+0000 mgr.smithi099.hzjdah (mgr.14182) 1087 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.udtzeq on smithi142 2024-01-27T23:50:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:03 smithi142 bash[20347]: cluster 2024-01-27T23:50:02.029392+0000 mon.smithi099 (mon.0) 931 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:50:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:03 smithi142 bash[20347]: cluster 2024-01-27T23:50:02.029497+0000 mon.smithi099 (mon.0) 932 : cluster [INF] Cluster is now healthy 2024-01-27T23:50:03.885 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:04.887 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:05.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:05 smithi142 bash[20347]: audit 2024-01-27T23:50:03.232135+0000 mgr.smithi099.hzjdah (mgr.14182) 1088 : audit [DBG] from='client.15372 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:05.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:05 smithi142 bash[20347]: cluster 2024-01-27T23:50:03.839654+0000 mgr.smithi099.hzjdah (mgr.14182) 1089 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:50:05.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:05 smithi099 bash[16328]: audit 2024-01-27T23:50:03.232135+0000 mgr.smithi099.hzjdah (mgr.14182) 1088 : audit [DBG] from='client.15372 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:05.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:05 smithi099 bash[16328]: cluster 2024-01-27T23:50:03.839654+0000 mgr.smithi099.hzjdah (mgr.14182) 1089 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:50:06.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:06 smithi099 bash[16328]: audit 2024-01-27T23:50:05.789217+0000 mon.smithi099 (mon.0) 933 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.udtzeq"}]: dispatch 2024-01-27T23:50:06.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:06 smithi142 bash[20347]: audit 2024-01-27T23:50:05.789217+0000 mon.smithi099 (mon.0) 933 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.udtzeq"}]: dispatch 2024-01-27T23:50:07.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: cephadm 2024-01-27T23:50:05.788080+0000 mgr.smithi099.hzjdah (mgr.14182) 1090 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:07.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:07.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.udtzeq ... 2024-01-27T23:50:07.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.udtzeq ... 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: cephadm 2024-01-27T23:50:05.788573+0000 mgr.smithi099.hzjdah (mgr.14182) 1091 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: cephadm 2024-01-27T23:50:05.790857+0000 mgr.smithi099.hzjdah (mgr.14182) 1092 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.udtzeq ... 2024-01-27T23:50:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: cephadm 2024-01-27T23:50:05.795628+0000 mgr.smithi099.hzjdah (mgr.14182) 1093 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.dozhvq on smithi099 2024-01-27T23:50:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:07 smithi099 bash[16328]: cluster 2024-01-27T23:50:05.840887+0000 mgr.smithi099.hzjdah (mgr.14182) 1094 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:50:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: cephadm 2024-01-27T23:50:05.788080+0000 mgr.smithi099.hzjdah (mgr.14182) 1090 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.udtzeq ... 2024-01-27T23:50:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.udtzeq ... 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: cephadm 2024-01-27T23:50:05.788573+0000 mgr.smithi099.hzjdah (mgr.14182) 1091 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: cephadm 2024-01-27T23:50:05.790857+0000 mgr.smithi099.hzjdah (mgr.14182) 1092 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.udtzeq ... 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: cephadm 2024-01-27T23:50:05.795628+0000 mgr.smithi099.hzjdah (mgr.14182) 1093 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.dozhvq on smithi099 2024-01-27T23:50:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:07 smithi142 bash[20347]: cluster 2024-01-27T23:50:05.840887+0000 mgr.smithi099.hzjdah (mgr.14182) 1094 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:50:08.185 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:08.185 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:48:57.678197Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.biybae on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-biybae\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.biybae\nDeploy daemon haproxy.nfs.foo.smithi142.biybae ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.513431Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.jiawuh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-jiawuh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.jiawuh\nDeploy daemon haproxy.nfs.foo.smithi099.jiawuh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:49:01.518943Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bpiqoh on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:08.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:08 smithi099 bash[16328]: cluster 2024-01-27T23:50:07.842484+0000 mgr.smithi099.hzjdah (mgr.14182) 1095 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:50:08.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:08 smithi142 bash[20347]: cluster 2024-01-27T23:50:07.842484+0000 mgr.smithi099.hzjdah (mgr.14182) 1095 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:50:08.829 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:09.831 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:10.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:09 smithi142 bash[20347]: audit 2024-01-27T23:50:08.173082+0000 mgr.smithi099.hzjdah (mgr.14182) 1096 : audit [DBG] from='client.15376 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:10.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:09 smithi142 bash[20347]: audit 2024-01-27T23:50:09.712122+0000 mon.smithi099 (mon.0) 934 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.dozhvq"}]: dispatch 2024-01-27T23:50:10.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:09 smithi099 bash[16328]: audit 2024-01-27T23:50:08.173082+0000 mgr.smithi099.hzjdah (mgr.14182) 1096 : audit [DBG] from='client.15376 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:10.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:09 smithi099 bash[16328]: audit 2024-01-27T23:50:09.712122+0000 mon.smithi099 (mon.0) 934 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.dozhvq"}]: dispatch 2024-01-27T23:50:11.254 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: cephadm 2024-01-27T23:50:09.711305+0000 mgr.smithi099.hzjdah (mgr.14182) 1097 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.254 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:11.254 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.254 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.254 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:11.254 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.254 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.dozhvq ... 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.255 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.dozhvq ... 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: cephadm 2024-01-27T23:50:09.711579+0000 mgr.smithi099.hzjdah (mgr.14182) 1098 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: cephadm 2024-01-27T23:50:09.713222+0000 mgr.smithi099.hzjdah (mgr.14182) 1099 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:50:11.256 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.dozhvq ... 2024-01-27T23:50:11.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:11.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:11.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:11.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: cephadm 2024-01-27T23:50:09.715000+0000 mgr.smithi099.hzjdah (mgr.14182) 1100 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:50:11.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: cephadm 2024-01-27T23:50:09.719259+0000 mgr.smithi099.hzjdah (mgr.14182) 1101 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:50:11.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: cluster 2024-01-27T23:50:09.720647+0000 mgr.smithi099.hzjdah (mgr.14182) 1102 : cluster [DBG] pgmap v734: 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-01-27T23:50:11.257 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:10 smithi099 bash[16328]: cluster 2024-01-27T23:50:09.970377+0000 mon.smithi099 (mon.0) 935 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:50:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: cephadm 2024-01-27T23:50:09.711305+0000 mgr.smithi099.hzjdah (mgr.14182) 1097 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.dozhvq ... 2024-01-27T23:50:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.dozhvq ... 2024-01-27T23:50:11.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:11.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:11.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:11.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: cephadm 2024-01-27T23:50:09.711579+0000 mgr.smithi099.hzjdah (mgr.14182) 1098 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: cephadm 2024-01-27T23:50:09.713222+0000 mgr.smithi099.hzjdah (mgr.14182) 1099 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:11.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq 2024-01-27T23:50:11.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq 2024-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.dozhvq ... 2024-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: cephadm 2024-01-27T23:50:09.715000+0000 mgr.smithi099.hzjdah (mgr.14182) 1100 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: cephadm 2024-01-27T23:50:09.719259+0000 mgr.smithi099.hzjdah (mgr.14182) 1101 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: cluster 2024-01-27T23:50:09.720647+0000 mgr.smithi099.hzjdah (mgr.14182) 1102 : cluster [DBG] pgmap v734: 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-01-27T23:50:11.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:10 smithi142 bash[20347]: cluster 2024-01-27T23:50:09.970377+0000 mon.smithi099 (mon.0) 935 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:50:13.154 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:13.154 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:13.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:12 smithi142 bash[20347]: cluster 2024-01-27T23:50:11.722316+0000 mgr.smithi099.hzjdah (mgr.14182) 1103 : cluster [DBG] pgmap v735: 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-01-27T23:50:13.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:12 smithi099 bash[16328]: cluster 2024-01-27T23:50:11.722316+0000 mgr.smithi099.hzjdah (mgr.14182) 1103 : cluster [DBG] pgmap v735: 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-01-27T23:50:13.810 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:14.811 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:15.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:14 smithi099 bash[16328]: audit 2024-01-27T23:50:13.142517+0000 mgr.smithi099.hzjdah (mgr.14182) 1104 : audit [DBG] from='client.15380 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:15.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:14 smithi099 bash[16328]: cluster 2024-01-27T23:50:13.724007+0000 mgr.smithi099.hzjdah (mgr.14182) 1105 : cluster [DBG] pgmap v736: 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-01-27T23:50:15.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:14 smithi099 bash[16328]: audit 2024-01-27T23:50:13.900665+0000 mon.smithi099 (mon.0) 936 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:50:15.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:14 smithi142 bash[20347]: audit 2024-01-27T23:50:13.142517+0000 mgr.smithi099.hzjdah (mgr.14182) 1104 : audit [DBG] from='client.15380 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:15.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:14 smithi142 bash[20347]: cluster 2024-01-27T23:50:13.724007+0000 mgr.smithi099.hzjdah (mgr.14182) 1105 : cluster [DBG] pgmap v736: 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-01-27T23:50:15.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:14 smithi142 bash[20347]: audit 2024-01-27T23:50:13.900665+0000 mon.smithi099 (mon.0) 936 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:50:17.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:16 smithi142 bash[20347]: cluster 2024-01-27T23:50:15.725505+0000 mgr.smithi099.hzjdah (mgr.14182) 1106 : cluster [DBG] pgmap v737: 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-01-27T23:50:17.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:16 smithi099 bash[16328]: cluster 2024-01-27T23:50:15.725505+0000 mgr.smithi099.hzjdah (mgr.14182) 1106 : cluster [DBG] pgmap v737: 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-01-27T23:50:17.942 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:17.942 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:18.532 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:19.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:18 smithi142 bash[20347]: cluster 2024-01-27T23:50:17.727667+0000 mgr.smithi099.hzjdah (mgr.14182) 1107 : cluster [DBG] pgmap v738: 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-01-27T23:50:19.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:18 smithi142 bash[20347]: audit 2024-01-27T23:50:17.930297+0000 mgr.smithi099.hzjdah (mgr.14182) 1108 : audit [DBG] from='client.15384 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:19.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:18 smithi099 bash[16328]: cluster 2024-01-27T23:50:17.727667+0000 mgr.smithi099.hzjdah (mgr.14182) 1107 : cluster [DBG] pgmap v738: 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-01-27T23:50:19.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:18 smithi099 bash[16328]: audit 2024-01-27T23:50:17.930297+0000 mgr.smithi099.hzjdah (mgr.14182) 1108 : audit [DBG] from='client.15384 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:19.534 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:21.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:20 smithi142 bash[20347]: cluster 2024-01-27T23:50:19.728476+0000 mgr.smithi099.hzjdah (mgr.14182) 1109 : cluster [DBG] pgmap v739: 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-01-27T23:50:21.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:20 smithi099 bash[16328]: cluster 2024-01-27T23:50:19.728476+0000 mgr.smithi099.hzjdah (mgr.14182) 1109 : cluster [DBG] pgmap v739: 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-01-27T23:50:22.723 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:22.724 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:23.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:22 smithi099 bash[16328]: cluster 2024-01-27T23:50:21.730172+0000 mgr.smithi099.hzjdah (mgr.14182) 1110 : 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-01-27T23:50:23.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:22 smithi142 bash[20347]: cluster 2024-01-27T23:50:21.730172+0000 mgr.smithi099.hzjdah (mgr.14182) 1110 : 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-01-27T23:50:23.395 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:24.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:23 smithi142 bash[20347]: audit 2024-01-27T23:50:22.712128+0000 mgr.smithi099.hzjdah (mgr.14182) 1111 : audit [DBG] from='client.15388 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:24.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:23 smithi099 bash[16328]: audit 2024-01-27T23:50:22.712128+0000 mgr.smithi099.hzjdah (mgr.14182) 1111 : audit [DBG] from='client.15388 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:24.397 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:24 smithi142 bash[20347]: cluster 2024-01-27T23:50:23.731848+0000 mgr.smithi099.hzjdah (mgr.14182) 1112 : 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-01-27T23:50:25.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:24 smithi099 bash[16328]: cluster 2024-01-27T23:50:23.731848+0000 mgr.smithi099.hzjdah (mgr.14182) 1112 : 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-01-27T23:50:27.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:27 smithi142 bash[20347]: cluster 2024-01-27T23:50:25.733382+0000 mgr.smithi099.hzjdah (mgr.14182) 1113 : cluster [DBG] pgmap v742: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:50:27.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:27 smithi099 bash[16328]: cluster 2024-01-27T23:50:25.733382+0000 mgr.smithi099.hzjdah (mgr.14182) 1113 : cluster [DBG] pgmap v742: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:50:27.493 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:27.494 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:28.141 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:29.143 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:29.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:29 smithi142 bash[20347]: audit 2024-01-27T23:50:27.482334+0000 mgr.smithi099.hzjdah (mgr.14182) 1114 : audit [DBG] from='client.15392 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:29.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:29 smithi142 bash[20347]: cluster 2024-01-27T23:50:27.735488+0000 mgr.smithi099.hzjdah (mgr.14182) 1115 : 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-01-27T23:50:29.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:29 smithi099 bash[16328]: audit 2024-01-27T23:50:27.482334+0000 mgr.smithi099.hzjdah (mgr.14182) 1114 : audit [DBG] from='client.15392 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:29.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:29 smithi099 bash[16328]: cluster 2024-01-27T23:50:27.735488+0000 mgr.smithi099.hzjdah (mgr.14182) 1115 : 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-01-27T23:50:31.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:31 smithi142 bash[20347]: cluster 2024-01-27T23:50:29.737032+0000 mgr.smithi099.hzjdah (mgr.14182) 1116 : cluster [DBG] pgmap v744: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:31.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:31 smithi099 bash[16328]: cluster 2024-01-27T23:50:29.737032+0000 mgr.smithi099.hzjdah (mgr.14182) 1116 : cluster [DBG] pgmap v744: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:32.366 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:32.367 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:33.011 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:33.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:33 smithi142 bash[20347]: cluster 2024-01-27T23:50:31.738715+0000 mgr.smithi099.hzjdah (mgr.14182) 1117 : 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-01-27T23:50:33.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:33 smithi099 bash[16328]: cluster 2024-01-27T23:50:31.738715+0000 mgr.smithi099.hzjdah (mgr.14182) 1117 : 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-01-27T23:50:34.011 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:34.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:34 smithi142 bash[20347]: audit 2024-01-27T23:50:32.354627+0000 mgr.smithi099.hzjdah (mgr.14182) 1118 : audit [DBG] from='client.15396 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:34.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:34 smithi099 bash[16328]: audit 2024-01-27T23:50:32.354627+0000 mgr.smithi099.hzjdah (mgr.14182) 1118 : audit [DBG] from='client.15396 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:35 smithi142 bash[20347]: cluster 2024-01-27T23:50:33.740398+0000 mgr.smithi099.hzjdah (mgr.14182) 1119 : 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-01-27T23:50:35.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:35 smithi099 bash[16328]: cluster 2024-01-27T23:50:33.740398+0000 mgr.smithi099.hzjdah (mgr.14182) 1119 : 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-01-27T23:50:37.189 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:37.189 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:37.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:37 smithi142 bash[20347]: cluster 2024-01-27T23:50:35.741962+0000 mgr.smithi099.hzjdah (mgr.14182) 1120 : cluster [DBG] pgmap v747: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:50:37.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:37 smithi099 bash[16328]: cluster 2024-01-27T23:50:35.741962+0000 mgr.smithi099.hzjdah (mgr.14182) 1120 : cluster [DBG] pgmap v747: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:50:37.885 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:38.886 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:39.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:39 smithi142 bash[20347]: audit 2024-01-27T23:50:37.177240+0000 mgr.smithi099.hzjdah (mgr.14182) 1121 : audit [DBG] from='client.15400 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:39.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:39 smithi142 bash[20347]: cluster 2024-01-27T23:50:37.743874+0000 mgr.smithi099.hzjdah (mgr.14182) 1122 : 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-01-27T23:50:39.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:39 smithi099 bash[16328]: audit 2024-01-27T23:50:37.177240+0000 mgr.smithi099.hzjdah (mgr.14182) 1121 : audit [DBG] from='client.15400 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:39.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:39 smithi099 bash[16328]: cluster 2024-01-27T23:50:37.743874+0000 mgr.smithi099.hzjdah (mgr.14182) 1122 : 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-01-27T23:50:41.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:41 smithi142 bash[20347]: cluster 2024-01-27T23:50:39.745353+0000 mgr.smithi099.hzjdah (mgr.14182) 1123 : cluster [DBG] pgmap v749: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:41.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:41 smithi099 bash[16328]: cluster 2024-01-27T23:50:39.745353+0000 mgr.smithi099.hzjdah (mgr.14182) 1123 : cluster [DBG] pgmap v749: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:42.094 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:42.094 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:42.702 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:43.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:43 smithi099 bash[16328]: cluster 2024-01-27T23:50:41.747369+0000 mgr.smithi099.hzjdah (mgr.14182) 1124 : 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-01-27T23:50:43.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:43 smithi142 bash[20347]: cluster 2024-01-27T23:50:41.747369+0000 mgr.smithi099.hzjdah (mgr.14182) 1124 : 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-01-27T23:50:43.703 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:44.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:44 smithi099 bash[16328]: audit 2024-01-27T23:50:42.081815+0000 mgr.smithi099.hzjdah (mgr.14182) 1125 : audit [DBG] from='client.15404 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:44.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:44 smithi142 bash[20347]: audit 2024-01-27T23:50:42.081815+0000 mgr.smithi099.hzjdah (mgr.14182) 1125 : audit [DBG] from='client.15404 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:45.159 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:45 smithi099 bash[16328]: cluster 2024-01-27T23:50:43.749187+0000 mgr.smithi099.hzjdah (mgr.14182) 1126 : 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-01-27T23:50:45.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:45 smithi142 bash[20347]: cluster 2024-01-27T23:50:43.749187+0000 mgr.smithi099.hzjdah (mgr.14182) 1126 : 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-01-27T23:50:46.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:46 smithi099 bash[16328]: cluster 2024-01-27T23:50:45.750118+0000 mgr.smithi099.hzjdah (mgr.14182) 1127 : cluster [DBG] pgmap v752: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:50:46.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:46 smithi142 bash[20347]: cluster 2024-01-27T23:50:45.750118+0000 mgr.smithi099.hzjdah (mgr.14182) 1127 : cluster [DBG] pgmap v752: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:50:46.954 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:46.954 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:47.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:47 smithi099 bash[16328]: audit 2024-01-27T23:50:46.945868+0000 mgr.smithi099.hzjdah (mgr.14182) 1128 : audit [DBG] from='client.15408 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:47.528 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:47.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:47 smithi142 bash[20347]: audit 2024-01-27T23:50:46.945868+0000 mgr.smithi099.hzjdah (mgr.14182) 1128 : audit [DBG] from='client.15408 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:48.529 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:48.542 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:48 smithi099 bash[16328]: cluster 2024-01-27T23:50:47.751987+0000 mgr.smithi099.hzjdah (mgr.14182) 1129 : 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-01-27T23:50:48.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:48 smithi142 bash[20347]: cluster 2024-01-27T23:50:47.751987+0000 mgr.smithi099.hzjdah (mgr.14182) 1129 : 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-01-27T23:50:51.267 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:50 smithi099 bash[16328]: cluster 2024-01-27T23:50:49.753475+0000 mgr.smithi099.hzjdah (mgr.14182) 1130 : cluster [DBG] pgmap v754: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:50 smithi142 bash[20347]: cluster 2024-01-27T23:50:49.753475+0000 mgr.smithi099.hzjdah (mgr.14182) 1130 : cluster [DBG] pgmap v754: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:51.711 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:51.711 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:52.343 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:53.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:52 smithi142 bash[20347]: audit 2024-01-27T23:50:51.699146+0000 mgr.smithi099.hzjdah (mgr.14182) 1131 : audit [DBG] from='client.15412 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:53.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:52 smithi142 bash[20347]: cluster 2024-01-27T23:50:51.755034+0000 mgr.smithi099.hzjdah (mgr.14182) 1132 : cluster [DBG] pgmap v755: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:53.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:52 smithi099 bash[16328]: audit 2024-01-27T23:50:51.699146+0000 mgr.smithi099.hzjdah (mgr.14182) 1131 : audit [DBG] from='client.15412 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:53.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:52 smithi099 bash[16328]: cluster 2024-01-27T23:50:51.755034+0000 mgr.smithi099.hzjdah (mgr.14182) 1132 : cluster [DBG] pgmap v755: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:53.344 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:55.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:55 smithi099 bash[16328]: cluster 2024-01-27T23:50:53.756684+0000 mgr.smithi099.hzjdah (mgr.14182) 1133 : cluster [DBG] pgmap v756: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:55.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:55 smithi142 bash[20347]: cluster 2024-01-27T23:50:53.756684+0000 mgr.smithi099.hzjdah (mgr.14182) 1133 : cluster [DBG] pgmap v756: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:56.602 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:50:56.603 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:50:57.215 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:50:57.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:57 smithi142 bash[20347]: cluster 2024-01-27T23:50:55.758315+0000 mgr.smithi099.hzjdah (mgr.14182) 1134 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:50:57.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:57 smithi099 bash[16328]: cluster 2024-01-27T23:50:55.758315+0000 mgr.smithi099.hzjdah (mgr.14182) 1134 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:50:58.216 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:50:58.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:58 smithi142 bash[20347]: audit 2024-01-27T23:50:56.592785+0000 mgr.smithi099.hzjdah (mgr.14182) 1135 : audit [DBG] from='client.15416 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:58.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:58 smithi099 bash[16328]: audit 2024-01-27T23:50:56.592785+0000 mgr.smithi099.hzjdah (mgr.14182) 1135 : audit [DBG] from='client.15416 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:50:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:50:59 smithi142 bash[20347]: cluster 2024-01-27T23:50:57.760264+0000 mgr.smithi099.hzjdah (mgr.14182) 1136 : cluster [DBG] pgmap v758: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:50:59.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:50:59 smithi099 bash[16328]: cluster 2024-01-27T23:50:57.760264+0000 mgr.smithi099.hzjdah (mgr.14182) 1136 : cluster [DBG] pgmap v758: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:01 smithi142 bash[20347]: cluster 2024-01-27T23:50:59.761752+0000 mgr.smithi099.hzjdah (mgr.14182) 1137 : cluster [DBG] pgmap v759: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:01.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:01 smithi099 bash[16328]: cluster 2024-01-27T23:50:59.761752+0000 mgr.smithi099.hzjdah (mgr.14182) 1137 : cluster [DBG] pgmap v759: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:01.444 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:01.444 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:02.040 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:03.042 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:03.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:03 smithi142 bash[20347]: audit 2024-01-27T23:51:01.431461+0000 mgr.smithi099.hzjdah (mgr.14182) 1138 : audit [DBG] from='client.15420 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:03 smithi142 bash[20347]: cluster 2024-01-27T23:51:01.763407+0000 mgr.smithi099.hzjdah (mgr.14182) 1139 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:03 smithi099 bash[16328]: audit 2024-01-27T23:51:01.431461+0000 mgr.smithi099.hzjdah (mgr.14182) 1138 : audit [DBG] from='client.15420 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:03 smithi099 bash[16328]: cluster 2024-01-27T23:51:01.763407+0000 mgr.smithi099.hzjdah (mgr.14182) 1139 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:05.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:05 smithi142 bash[20347]: cluster 2024-01-27T23:51:03.765153+0000 mgr.smithi099.hzjdah (mgr.14182) 1140 : cluster [DBG] pgmap v761: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:05.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:05 smithi099 bash[16328]: cluster 2024-01-27T23:51:03.765153+0000 mgr.smithi099.hzjdah (mgr.14182) 1140 : cluster [DBG] pgmap v761: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:06.262 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:06.262 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:06.877 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:07.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:07 smithi142 bash[20347]: cluster 2024-01-27T23:51:05.766744+0000 mgr.smithi099.hzjdah (mgr.14182) 1141 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:51:07.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:07 smithi099 bash[16328]: cluster 2024-01-27T23:51:05.766744+0000 mgr.smithi099.hzjdah (mgr.14182) 1141 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:51:07.878 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:08.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:08 smithi142 bash[20347]: audit 2024-01-27T23:51:06.252102+0000 mgr.smithi099.hzjdah (mgr.14182) 1142 : audit [DBG] from='client.15424 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:08.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:08 smithi099 bash[16328]: audit 2024-01-27T23:51:06.252102+0000 mgr.smithi099.hzjdah (mgr.14182) 1142 : audit [DBG] from='client.15424 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:09.310 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:09 smithi099 bash[16328]: cluster 2024-01-27T23:51:07.768651+0000 mgr.smithi099.hzjdah (mgr.14182) 1143 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:09.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:09 smithi142 bash[20347]: cluster 2024-01-27T23:51:07.768651+0000 mgr.smithi099.hzjdah (mgr.14182) 1143 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:10.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:10 smithi099 bash[16328]: audit 2024-01-27T23:51:09.725717+0000 mon.smithi099 (mon.0) 937 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:51:10.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:10 smithi099 bash[16328]: audit 2024-01-27T23:51:10.026092+0000 mon.smithi099 (mon.0) 938 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:51:10.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:10 smithi099 bash[16328]: audit 2024-01-27T23:51:10.027078+0000 mon.smithi099 (mon.0) 939 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:51:10.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:10 smithi099 bash[16328]: audit 2024-01-27T23:51:10.032373+0000 mon.smithi099 (mon.0) 940 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:51:10.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:10 smithi099 bash[16328]: audit 2024-01-27T23:51:10.037340+0000 mon.smithi099 (mon.0) 941 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:51:10.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:10 smithi099 bash[16328]: audit 2024-01-27T23:51:10.051092+0000 mon.smithi099 (mon.0) 942 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:51:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:10 smithi142 bash[20347]: audit 2024-01-27T23:51:09.725717+0000 mon.smithi099 (mon.0) 937 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:51:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:10 smithi142 bash[20347]: audit 2024-01-27T23:51:10.026092+0000 mon.smithi099 (mon.0) 938 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:51:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:10 smithi142 bash[20347]: audit 2024-01-27T23:51:10.027078+0000 mon.smithi099 (mon.0) 939 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:51:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:10 smithi142 bash[20347]: audit 2024-01-27T23:51:10.032373+0000 mon.smithi099 (mon.0) 940 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:51:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:10 smithi142 bash[20347]: audit 2024-01-27T23:51:10.037340+0000 mon.smithi099 (mon.0) 941 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:51:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:10 smithi142 bash[20347]: audit 2024-01-27T23:51:10.051092+0000 mon.smithi099 (mon.0) 942 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:51:11.214 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:11.214 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:49:01.522538Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.weimav on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:11 smithi142 bash[20347]: cluster 2024-01-27T23:51:09.770099+0000 mgr.smithi099.hzjdah (mgr.14182) 1144 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:11 smithi142 bash[20347]: cluster 2024-01-27T23:51:10.032943+0000 mgr.smithi099.hzjdah (mgr.14182) 1145 : 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-01-27T23:51:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:11 smithi142 bash[20347]: cephadm 2024-01-27T23:51:10.053817+0000 mgr.smithi099.hzjdah (mgr.14182) 1146 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.lpslfs on smithi142 2024-01-27T23:51:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:11 smithi142 bash[20347]: cluster 2024-01-27T23:51:10.065658+0000 mon.smithi099 (mon.0) 943 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:51:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:11 smithi142 bash[20347]: cluster 2024-01-27T23:51:10.065704+0000 mon.smithi099 (mon.0) 944 : cluster [INF] Cluster is now healthy 2024-01-27T23:51:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:11 smithi142 bash[20347]: audit 2024-01-27T23:51:10.399286+0000 mon.smithi099 (mon.0) 945 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:51:11.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:11 smithi099 bash[16328]: cluster 2024-01-27T23:51:09.770099+0000 mgr.smithi099.hzjdah (mgr.14182) 1144 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:11.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:11 smithi099 bash[16328]: cluster 2024-01-27T23:51:10.032943+0000 mgr.smithi099.hzjdah (mgr.14182) 1145 : 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-01-27T23:51:11.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:11 smithi099 bash[16328]: cephadm 2024-01-27T23:51:10.053817+0000 mgr.smithi099.hzjdah (mgr.14182) 1146 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.lpslfs on smithi142 2024-01-27T23:51:11.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:11 smithi099 bash[16328]: cluster 2024-01-27T23:51:10.065658+0000 mon.smithi099 (mon.0) 943 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:51:11.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:11 smithi099 bash[16328]: cluster 2024-01-27T23:51:10.065704+0000 mon.smithi099 (mon.0) 944 : cluster [INF] Cluster is now healthy 2024-01-27T23:51:11.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:11 smithi099 bash[16328]: audit 2024-01-27T23:51:10.399286+0000 mon.smithi099 (mon.0) 945 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:51:11.850 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:12.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:12 smithi099 bash[16328]: audit 2024-01-27T23:51:11.202193+0000 mgr.smithi099.hzjdah (mgr.14182) 1147 : audit [DBG] from='client.15428 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:12.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:12 smithi099 bash[16328]: cluster 2024-01-27T23:51:12.034430+0000 mgr.smithi099.hzjdah (mgr.14182) 1148 : cluster [DBG] pgmap v766: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:51:12.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:12 smithi142 bash[20347]: audit 2024-01-27T23:51:11.202193+0000 mgr.smithi099.hzjdah (mgr.14182) 1147 : audit [DBG] from='client.15428 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:12.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:12 smithi142 bash[20347]: cluster 2024-01-27T23:51:12.034430+0000 mgr.smithi099.hzjdah (mgr.14182) 1148 : cluster [DBG] pgmap v766: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:51:12.852 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:14.203 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:14 smithi099 bash[16328]: audit 2024-01-27T23:51:13.955838+0000 mon.smithi099 (mon.0) 946 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.lpslfs"}]: dispatch 2024-01-27T23:51:14.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:14 smithi142 bash[20347]: audit 2024-01-27T23:51:13.955838+0000 mon.smithi099 (mon.0) 946 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.lpslfs"}]: dispatch 2024-01-27T23:51:15.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: cephadm 2024-01-27T23:51:13.954564+0000 mgr.smithi099.hzjdah (mgr.14182) 1149 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.lpslfs ... 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:51:15.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.lpslfs ... 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:15.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: cephadm 2024-01-27T23:51:13.955193+0000 mgr.smithi099.hzjdah (mgr.14182) 1150 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: cephadm 2024-01-27T23:51:13.957220+0000 mgr.smithi099.hzjdah (mgr.14182) 1151 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.lpslfs ... 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: cephadm 2024-01-27T23:51:13.960407+0000 mgr.smithi099.hzjdah (mgr.14182) 1152 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.srehqb on smithi099 2024-01-27T23:51:15.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:15 smithi142 bash[20347]: cluster 2024-01-27T23:51:14.035201+0000 mgr.smithi099.hzjdah (mgr.14182) 1153 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:51:15.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: cephadm 2024-01-27T23:51:13.954564+0000 mgr.smithi099.hzjdah (mgr.14182) 1149 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:15.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:15.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.lpslfs ... 2024-01-27T23:51:15.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.lpslfs ... 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: cephadm 2024-01-27T23:51:13.955193+0000 mgr.smithi099.hzjdah (mgr.14182) 1150 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: cephadm 2024-01-27T23:51:13.957220+0000 mgr.smithi099.hzjdah (mgr.14182) 1151 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:15.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs 2024-01-27T23:51:15.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.lpslfs ... 2024-01-27T23:51:15.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:15.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:15.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:15.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:15.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: cephadm 2024-01-27T23:51:13.960407+0000 mgr.smithi099.hzjdah (mgr.14182) 1152 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.srehqb on smithi099 2024-01-27T23:51:15.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:15 smithi099 bash[16328]: cluster 2024-01-27T23:51:14.035201+0000 mgr.smithi099.hzjdah (mgr.14182) 1153 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:51:16.150 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:16.150 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:05.790590Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.udtzeq on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-udtzeq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.udtzeq\nDeploy daemon haproxy.nfs.foo.smithi142.udtzeq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.713111Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.dozhvq on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dozhvq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dozhvq\nDeploy daemon haproxy.nfs.foo.smithi099.dozhvq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:50:09.714900Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.yvrvud on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:16.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:16 smithi142 bash[20347]: cluster 2024-01-27T23:51:16.035942+0000 mgr.smithi099.hzjdah (mgr.14182) 1154 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:51:16.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:16 smithi099 bash[16328]: cluster 2024-01-27T23:51:16.035942+0000 mgr.smithi099.hzjdah (mgr.14182) 1154 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:51:16.803 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:17.449 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:17 smithi099 bash[16328]: audit 2024-01-27T23:51:16.139427+0000 mgr.smithi099.hzjdah (mgr.14182) 1155 : audit [DBG] from='client.15432 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:17.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:17 smithi142 bash[20347]: audit 2024-01-27T23:51:16.139427+0000 mgr.smithi099.hzjdah (mgr.14182) 1155 : audit [DBG] from='client.15432 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:17.804 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:18.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: cephadm 2024-01-27T23:51:17.866905+0000 mgr.smithi099.hzjdah (mgr.14182) 1156 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.srehqb ... 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:51:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.srehqb ... 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: cephadm 2024-01-27T23:51:17.867143+0000 mgr.smithi099.hzjdah (mgr.14182) 1157 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: audit 2024-01-27T23:51:17.867557+0000 mon.smithi099 (mon.0) 947 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.srehqb"}]: dispatch 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: cephadm 2024-01-27T23:51:17.868507+0000 mgr.smithi099.hzjdah (mgr.14182) 1158 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.srehqb ... 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: cephadm 2024-01-27T23:51:17.871057+0000 mgr.smithi099.hzjdah (mgr.14182) 1159 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:51:18.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: cephadm 2024-01-27T23:51:17.873182+0000 mgr.smithi099.hzjdah (mgr.14182) 1160 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:51:18.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:18 smithi142 bash[20347]: cluster 2024-01-27T23:51:17.874388+0000 mgr.smithi099.hzjdah (mgr.14182) 1161 : cluster [DBG] pgmap v769: 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-01-27T23:51:18.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: cephadm 2024-01-27T23:51:17.866905+0000 mgr.smithi099.hzjdah (mgr.14182) 1156 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:18.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:18.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.srehqb ... 2024-01-27T23:51:18.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:18.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.srehqb ... 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: cephadm 2024-01-27T23:51:17.867143+0000 mgr.smithi099.hzjdah (mgr.14182) 1157 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: audit 2024-01-27T23:51:17.867557+0000 mon.smithi099 (mon.0) 947 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.srehqb"}]: dispatch 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: cephadm 2024-01-27T23:51:17.868507+0000 mgr.smithi099.hzjdah (mgr.14182) 1158 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:51:18.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb 2024-01-27T23:51:18.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.srehqb ... 2024-01-27T23:51:18.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:51:18.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:51:18.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:51:18.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:51:18.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: cephadm 2024-01-27T23:51:17.871057+0000 mgr.smithi099.hzjdah (mgr.14182) 1159 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:51:18.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: cephadm 2024-01-27T23:51:17.873182+0000 mgr.smithi099.hzjdah (mgr.14182) 1160 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:51:18.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:18 smithi099 bash[16328]: cluster 2024-01-27T23:51:17.874388+0000 mgr.smithi099.hzjdah (mgr.14182) 1161 : cluster [DBG] pgmap v769: 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-01-27T23:51:19.283 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:19 smithi099 bash[16328]: cluster 2024-01-27T23:51:18.128381+0000 mon.smithi099 (mon.0) 948 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:51:19.283 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:19 smithi099 bash[16328]: audit 2024-01-27T23:51:18.959789+0000 mon.smithi099 (mon.0) 949 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:51:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:19 smithi142 bash[20347]: cluster 2024-01-27T23:51:18.128381+0000 mon.smithi099 (mon.0) 948 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:51:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:19 smithi142 bash[20347]: audit 2024-01-27T23:51:18.959789+0000 mon.smithi099 (mon.0) 949 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:51:20.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:20 smithi142 bash[20347]: cluster 2024-01-27T23:51:19.875875+0000 mgr.smithi099.hzjdah (mgr.14182) 1162 : cluster [DBG] pgmap v770: 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-01-27T23:51:20.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:20 smithi099 bash[16328]: cluster 2024-01-27T23:51:19.875875+0000 mgr.smithi099.hzjdah (mgr.14182) 1162 : cluster [DBG] pgmap v770: 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-01-27T23:51:21.169 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:21.169 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:21.802 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:22.803 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:23.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:22 smithi099 bash[16328]: audit 2024-01-27T23:51:21.162602+0000 mgr.smithi099.hzjdah (mgr.14182) 1163 : audit [DBG] from='client.15436 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:23.083 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:22 smithi099 bash[16328]: cluster 2024-01-27T23:51:21.877659+0000 mgr.smithi099.hzjdah (mgr.14182) 1164 : cluster [DBG] pgmap v771: 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-01-27T23:51:23.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:22 smithi142 bash[20347]: audit 2024-01-27T23:51:21.162602+0000 mgr.smithi099.hzjdah (mgr.14182) 1163 : audit [DBG] from='client.15436 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:23.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:22 smithi142 bash[20347]: cluster 2024-01-27T23:51:21.877659+0000 mgr.smithi099.hzjdah (mgr.14182) 1164 : cluster [DBG] pgmap v771: 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-01-27T23:51:25.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:24 smithi142 bash[20347]: cluster 2024-01-27T23:51:23.879313+0000 mgr.smithi099.hzjdah (mgr.14182) 1165 : cluster [DBG] pgmap v772: 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-01-27T23:51:25.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:24 smithi099 bash[16328]: cluster 2024-01-27T23:51:23.879313+0000 mgr.smithi099.hzjdah (mgr.14182) 1165 : cluster [DBG] pgmap v772: 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-01-27T23:51:26.033 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:26.033 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:26.642 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:26.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:26 smithi142 bash[20347]: audit 2024-01-27T23:51:25.399002+0000 mon.smithi099 (mon.0) 950 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:51:26.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:26 smithi142 bash[20347]: cluster 2024-01-27T23:51:25.880299+0000 mgr.smithi099.hzjdah (mgr.14182) 1166 : cluster [DBG] pgmap v773: 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-01-27T23:51:26.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:26 smithi142 bash[20347]: audit 2024-01-27T23:51:26.020444+0000 mgr.smithi099.hzjdah (mgr.14182) 1167 : audit [DBG] from='client.15440 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:26.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:26 smithi099 bash[16328]: audit 2024-01-27T23:51:25.399002+0000 mon.smithi099 (mon.0) 950 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:51:26.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:26 smithi099 bash[16328]: cluster 2024-01-27T23:51:25.880299+0000 mgr.smithi099.hzjdah (mgr.14182) 1166 : cluster [DBG] pgmap v773: 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-01-27T23:51:26.833 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:26 smithi099 bash[16328]: audit 2024-01-27T23:51:26.020444+0000 mgr.smithi099.hzjdah (mgr.14182) 1167 : audit [DBG] from='client.15440 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:27.643 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:28.975 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:28 smithi099 bash[16328]: cluster 2024-01-27T23:51:27.882353+0000 mgr.smithi099.hzjdah (mgr.14182) 1168 : cluster [DBG] pgmap v774: 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-01-27T23:51:29.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:28 smithi142 bash[20347]: cluster 2024-01-27T23:51:27.882353+0000 mgr.smithi099.hzjdah (mgr.14182) 1168 : cluster [DBG] pgmap v774: 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-01-27T23:51:30.809 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:30.809 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:31 smithi142 bash[20347]: cluster 2024-01-27T23:51:29.883825+0000 mgr.smithi099.hzjdah (mgr.14182) 1169 : 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-01-27T23:51:31.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:31 smithi099 bash[16328]: cluster 2024-01-27T23:51:29.883825+0000 mgr.smithi099.hzjdah (mgr.14182) 1169 : 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-01-27T23:51:31.423 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:32.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:32 smithi142 bash[20347]: audit 2024-01-27T23:51:30.800192+0000 mgr.smithi099.hzjdah (mgr.14182) 1170 : audit [DBG] from='client.15444 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:32.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:32 smithi099 bash[16328]: audit 2024-01-27T23:51:30.800192+0000 mgr.smithi099.hzjdah (mgr.14182) 1170 : audit [DBG] from='client.15444 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:32.424 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:33.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:33 smithi142 bash[20347]: cluster 2024-01-27T23:51:31.885621+0000 mgr.smithi099.hzjdah (mgr.14182) 1171 : cluster [DBG] pgmap v776: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:33.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:33 smithi099 bash[16328]: cluster 2024-01-27T23:51:31.885621+0000 mgr.smithi099.hzjdah (mgr.14182) 1171 : cluster [DBG] pgmap v776: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:35.288 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:35 smithi099 bash[16328]: cluster 2024-01-27T23:51:33.886537+0000 mgr.smithi099.hzjdah (mgr.14182) 1172 : 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-01-27T23:51:35.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:35 smithi142 bash[20347]: cluster 2024-01-27T23:51:33.886537+0000 mgr.smithi099.hzjdah (mgr.14182) 1172 : 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-01-27T23:51:35.630 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:35.630 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:36.271 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:37.272 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:37.285 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:37 smithi099 bash[16328]: audit 2024-01-27T23:51:35.625729+0000 mgr.smithi099.hzjdah (mgr.14182) 1173 : audit [DBG] from='client.15448 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:37.285 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:37 smithi099 bash[16328]: cluster 2024-01-27T23:51:35.888058+0000 mgr.smithi099.hzjdah (mgr.14182) 1174 : cluster [DBG] pgmap v778: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:51:37.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:37 smithi142 bash[20347]: audit 2024-01-27T23:51:35.625729+0000 mgr.smithi099.hzjdah (mgr.14182) 1173 : audit [DBG] from='client.15448 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:37.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:37 smithi142 bash[20347]: cluster 2024-01-27T23:51:35.888058+0000 mgr.smithi099.hzjdah (mgr.14182) 1174 : cluster [DBG] pgmap v778: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:51:39.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:39 smithi142 bash[20347]: cluster 2024-01-27T23:51:37.890182+0000 mgr.smithi099.hzjdah (mgr.14182) 1175 : 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-01-27T23:51:39.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:39 smithi099 bash[16328]: cluster 2024-01-27T23:51:37.890182+0000 mgr.smithi099.hzjdah (mgr.14182) 1175 : 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-01-27T23:51:40.434 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:40.434 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:41.035 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:41.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:41 smithi142 bash[20347]: cluster 2024-01-27T23:51:39.891668+0000 mgr.smithi099.hzjdah (mgr.14182) 1176 : 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-01-27T23:51:41.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:41 smithi099 bash[16328]: cluster 2024-01-27T23:51:39.891668+0000 mgr.smithi099.hzjdah (mgr.14182) 1176 : 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-01-27T23:51:42.036 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:42.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:42 smithi142 bash[20347]: audit 2024-01-27T23:51:40.422167+0000 mgr.smithi099.hzjdah (mgr.14182) 1177 : audit [DBG] from='client.15452 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:42.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:42 smithi099 bash[16328]: audit 2024-01-27T23:51:40.422167+0000 mgr.smithi099.hzjdah (mgr.14182) 1177 : audit [DBG] from='client.15452 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:43.135 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:43 smithi099 bash[16328]: cluster 2024-01-27T23:51:41.893408+0000 mgr.smithi099.hzjdah (mgr.14182) 1178 : cluster [DBG] pgmap v781: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:43.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:43 smithi142 bash[20347]: cluster 2024-01-27T23:51:41.893408+0000 mgr.smithi099.hzjdah (mgr.14182) 1178 : cluster [DBG] pgmap v781: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:45.217 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:45.218 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:45.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:45 smithi099 bash[16328]: cluster 2024-01-27T23:51:43.895165+0000 mgr.smithi099.hzjdah (mgr.14182) 1179 : 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-01-27T23:51:45.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:45 smithi142 bash[20347]: cluster 2024-01-27T23:51:43.895165+0000 mgr.smithi099.hzjdah (mgr.14182) 1179 : 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-01-27T23:51:45.836 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:46.838 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:47.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:47 smithi099 bash[16328]: audit 2024-01-27T23:51:45.207651+0000 mgr.smithi099.hzjdah (mgr.14182) 1180 : audit [DBG] from='client.15456 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:47.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:47 smithi099 bash[16328]: cluster 2024-01-27T23:51:45.896729+0000 mgr.smithi099.hzjdah (mgr.14182) 1181 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:51:47.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:47 smithi142 bash[20347]: audit 2024-01-27T23:51:45.207651+0000 mgr.smithi099.hzjdah (mgr.14182) 1180 : audit [DBG] from='client.15456 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:47.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:47 smithi142 bash[20347]: cluster 2024-01-27T23:51:45.896729+0000 mgr.smithi099.hzjdah (mgr.14182) 1181 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:51:49.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:49 smithi099 bash[16328]: cluster 2024-01-27T23:51:47.898732+0000 mgr.smithi099.hzjdah (mgr.14182) 1182 : 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-01-27T23:51:49.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:49 smithi142 bash[20347]: cluster 2024-01-27T23:51:47.898732+0000 mgr.smithi099.hzjdah (mgr.14182) 1182 : 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-01-27T23:51:50.009 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:50.009 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:50.653 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:51 smithi142 bash[20347]: cluster 2024-01-27T23:51:49.900197+0000 mgr.smithi099.hzjdah (mgr.14182) 1183 : 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-01-27T23:51:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:51 smithi142 bash[20347]: audit 2024-01-27T23:51:49.997536+0000 mgr.smithi099.hzjdah (mgr.14182) 1184 : audit [DBG] from='client.15460 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:51 smithi099 bash[16328]: cluster 2024-01-27T23:51:49.900197+0000 mgr.smithi099.hzjdah (mgr.14182) 1183 : 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-01-27T23:51:51.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:51 smithi099 bash[16328]: audit 2024-01-27T23:51:49.997536+0000 mgr.smithi099.hzjdah (mgr.14182) 1184 : audit [DBG] from='client.15460 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:51.654 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:52.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:52 smithi142 bash[20347]: cluster 2024-01-27T23:51:51.901953+0000 mgr.smithi099.hzjdah (mgr.14182) 1185 : cluster [DBG] pgmap v786: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:52.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:52 smithi099 bash[16328]: cluster 2024-01-27T23:51:51.901953+0000 mgr.smithi099.hzjdah (mgr.14182) 1185 : cluster [DBG] pgmap v786: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:51:54.876 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:54.876 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:51:55.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:55 smithi142 bash[20347]: cluster 2024-01-27T23:51:53.903582+0000 mgr.smithi099.hzjdah (mgr.14182) 1186 : 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-01-27T23:51:55.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:55 smithi099 bash[16328]: cluster 2024-01-27T23:51:53.903582+0000 mgr.smithi099.hzjdah (mgr.14182) 1186 : 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-01-27T23:51:55.500 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:51:56.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:56 smithi142 bash[20347]: audit 2024-01-27T23:51:54.863611+0000 mgr.smithi099.hzjdah (mgr.14182) 1187 : audit [DBG] from='client.15464 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:56.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:56 smithi099 bash[16328]: audit 2024-01-27T23:51:54.863611+0000 mgr.smithi099.hzjdah (mgr.14182) 1187 : audit [DBG] from='client.15464 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:51:56.501 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:51:57.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:57 smithi142 bash[20347]: cluster 2024-01-27T23:51:55.904985+0000 mgr.smithi099.hzjdah (mgr.14182) 1188 : cluster [DBG] pgmap v788: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:51:57.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:57 smithi099 bash[16328]: cluster 2024-01-27T23:51:55.904985+0000 mgr.smithi099.hzjdah (mgr.14182) 1188 : cluster [DBG] pgmap v788: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:51:59.293 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:51:59 smithi099 bash[16328]: cluster 2024-01-27T23:51:57.907178+0000 mgr.smithi099.hzjdah (mgr.14182) 1189 : 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-01-27T23:51:59.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:51:59 smithi142 bash[20347]: cluster 2024-01-27T23:51:57.907178+0000 mgr.smithi099.hzjdah (mgr.14182) 1189 : 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-01-27T23:51:59.652 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:51:59.652 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:00.295 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:01.296 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:01 smithi142 bash[20347]: audit 2024-01-27T23:51:59.641256+0000 mgr.smithi099.hzjdah (mgr.14182) 1190 : audit [DBG] from='client.15468 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:01 smithi142 bash[20347]: cluster 2024-01-27T23:51:59.908719+0000 mgr.smithi099.hzjdah (mgr.14182) 1191 : 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-01-27T23:52:01.308 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:01 smithi099 bash[16328]: audit 2024-01-27T23:51:59.641256+0000 mgr.smithi099.hzjdah (mgr.14182) 1190 : audit [DBG] from='client.15468 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:01.309 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:01 smithi099 bash[16328]: cluster 2024-01-27T23:51:59.908719+0000 mgr.smithi099.hzjdah (mgr.14182) 1191 : 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-01-27T23:52:03.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:03 smithi142 bash[20347]: cluster 2024-01-27T23:52:01.910444+0000 mgr.smithi099.hzjdah (mgr.14182) 1192 : cluster [DBG] pgmap v791: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:03.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:03 smithi099 bash[16328]: cluster 2024-01-27T23:52:01.910444+0000 mgr.smithi099.hzjdah (mgr.14182) 1192 : cluster [DBG] pgmap v791: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:04.451 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:04.452 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:05.102 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:05.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:05 smithi142 bash[20347]: cluster 2024-01-27T23:52:03.911632+0000 mgr.smithi099.hzjdah (mgr.14182) 1193 : cluster [DBG] pgmap v792: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:05.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:05 smithi099 bash[16328]: cluster 2024-01-27T23:52:03.911632+0000 mgr.smithi099.hzjdah (mgr.14182) 1193 : cluster [DBG] pgmap v792: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:06.103 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:06.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:06 smithi099 bash[16328]: audit 2024-01-27T23:52:04.442166+0000 mgr.smithi099.hzjdah (mgr.14182) 1194 : audit [DBG] from='client.15472 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:06.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:06 smithi142 bash[20347]: audit 2024-01-27T23:52:04.442166+0000 mgr.smithi099.hzjdah (mgr.14182) 1194 : audit [DBG] from='client.15472 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:07.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:07 smithi099 bash[16328]: cluster 2024-01-27T23:52:05.913067+0000 mgr.smithi099.hzjdah (mgr.14182) 1195 : cluster [DBG] pgmap v793: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:52:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:07 smithi142 bash[20347]: cluster 2024-01-27T23:52:05.913067+0000 mgr.smithi099.hzjdah (mgr.14182) 1195 : cluster [DBG] pgmap v793: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:52:09.199 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:09.199 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:09.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:09 smithi099 bash[16328]: cluster 2024-01-27T23:52:07.914088+0000 mgr.smithi099.hzjdah (mgr.14182) 1196 : cluster [DBG] pgmap v794: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:09.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:09 smithi142 bash[20347]: cluster 2024-01-27T23:52:07.914088+0000 mgr.smithi099.hzjdah (mgr.14182) 1196 : cluster [DBG] pgmap v794: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:09.842 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:10.842 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:11 smithi142 bash[20347]: audit 2024-01-27T23:52:09.189054+0000 mgr.smithi099.hzjdah (mgr.14182) 1197 : audit [DBG] from='client.15476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:11 smithi142 bash[20347]: cluster 2024-01-27T23:52:09.915562+0000 mgr.smithi099.hzjdah (mgr.14182) 1198 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:11.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:11 smithi099 bash[16328]: audit 2024-01-27T23:52:09.189054+0000 mgr.smithi099.hzjdah (mgr.14182) 1197 : audit [DBG] from='client.15476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:11.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:11 smithi099 bash[16328]: cluster 2024-01-27T23:52:09.915562+0000 mgr.smithi099.hzjdah (mgr.14182) 1198 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:13.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:13 smithi099 bash[16328]: cluster 2024-01-27T23:52:11.916634+0000 mgr.smithi099.hzjdah (mgr.14182) 1199 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:13.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:13 smithi142 bash[20347]: cluster 2024-01-27T23:52:11.916634+0000 mgr.smithi099.hzjdah (mgr.14182) 1199 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:14.248 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:14.248 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:14.810 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:15.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:15 smithi099 bash[16328]: cluster 2024-01-27T23:52:13.917817+0000 mgr.smithi099.hzjdah (mgr.14182) 1200 : cluster [DBG] pgmap v797: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:15.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:15 smithi142 bash[20347]: cluster 2024-01-27T23:52:13.917817+0000 mgr.smithi099.hzjdah (mgr.14182) 1200 : cluster [DBG] pgmap v797: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:15.811 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:16.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:16 smithi142 bash[20347]: audit 2024-01-27T23:52:14.243089+0000 mgr.smithi099.hzjdah (mgr.14182) 1201 : audit [DBG] from='client.15480 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:16.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:16 smithi099 bash[16328]: audit 2024-01-27T23:52:14.243089+0000 mgr.smithi099.hzjdah (mgr.14182) 1201 : audit [DBG] from='client.15480 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:17.270 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:17 smithi099 bash[16328]: cluster 2024-01-27T23:52:15.918793+0000 mgr.smithi099.hzjdah (mgr.14182) 1202 : cluster [DBG] pgmap v798: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:52:17.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:17 smithi142 bash[20347]: cluster 2024-01-27T23:52:15.918793+0000 mgr.smithi099.hzjdah (mgr.14182) 1202 : cluster [DBG] pgmap v798: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:52:18.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:18 smithi142 bash[20347]: audit 2024-01-27T23:52:17.877579+0000 mon.smithi099 (mon.0) 951 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:52:18.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:18 smithi142 bash[20347]: cluster 2024-01-27T23:52:17.920182+0000 mgr.smithi099.hzjdah (mgr.14182) 1203 : cluster [DBG] pgmap v799: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:18.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:18 smithi099 bash[16328]: audit 2024-01-27T23:52:17.877579+0000 mon.smithi099 (mon.0) 951 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:52:18.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:18 smithi099 bash[16328]: cluster 2024-01-27T23:52:17.920182+0000 mgr.smithi099.hzjdah (mgr.14182) 1203 : cluster [DBG] pgmap v799: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:19.171 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:19.171 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:50:09.719037Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.meokqv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:19 smithi142 bash[20347]: audit 2024-01-27T23:52:18.196514+0000 mon.smithi099 (mon.0) 952 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:52:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:19 smithi142 bash[20347]: audit 2024-01-27T23:52:18.198184+0000 mon.smithi099 (mon.0) 953 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:52:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:19 smithi142 bash[20347]: audit 2024-01-27T23:52:18.206611+0000 mon.smithi099 (mon.0) 954 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:52:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:19 smithi142 bash[20347]: cluster 2024-01-27T23:52:18.207612+0000 mgr.smithi099.hzjdah (mgr.14182) 1204 : 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-01-27T23:52:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:19 smithi142 bash[20347]: audit 2024-01-27T23:52:18.217172+0000 mon.smithi099 (mon.0) 955 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:52:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:19 smithi142 bash[20347]: audit 2024-01-27T23:52:18.232063+0000 mon.smithi099 (mon.0) 956 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:52:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:19 smithi142 bash[20347]: cephadm 2024-01-27T23:52:18.236264+0000 mgr.smithi099.hzjdah (mgr.14182) 1205 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.zyllmi on smithi142 2024-01-27T23:52:19.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:19 smithi099 bash[16328]: audit 2024-01-27T23:52:18.196514+0000 mon.smithi099 (mon.0) 952 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:52:19.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:19 smithi099 bash[16328]: audit 2024-01-27T23:52:18.198184+0000 mon.smithi099 (mon.0) 953 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:52:19.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:19 smithi099 bash[16328]: audit 2024-01-27T23:52:18.206611+0000 mon.smithi099 (mon.0) 954 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:52:19.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:19 smithi099 bash[16328]: cluster 2024-01-27T23:52:18.207612+0000 mgr.smithi099.hzjdah (mgr.14182) 1204 : 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-01-27T23:52:19.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:19 smithi099 bash[16328]: audit 2024-01-27T23:52:18.217172+0000 mon.smithi099 (mon.0) 955 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:52:19.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:19 smithi099 bash[16328]: audit 2024-01-27T23:52:18.232063+0000 mon.smithi099 (mon.0) 956 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:52:19.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:19 smithi099 bash[16328]: cephadm 2024-01-27T23:52:18.236264+0000 mgr.smithi099.hzjdah (mgr.14182) 1205 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.zyllmi on smithi142 2024-01-27T23:52:19.800 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:20.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:20 smithi142 bash[20347]: audit 2024-01-27T23:52:19.161765+0000 mgr.smithi099.hzjdah (mgr.14182) 1206 : audit [DBG] from='client.15484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:20.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:20 smithi142 bash[20347]: cluster 2024-01-27T23:52:19.203832+0000 mon.smithi099 (mon.0) 957 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:52:20.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:20 smithi142 bash[20347]: cluster 2024-01-27T23:52:19.203898+0000 mon.smithi099 (mon.0) 958 : cluster [INF] Cluster is now healthy 2024-01-27T23:52:20.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:20 smithi099 bash[16328]: audit 2024-01-27T23:52:19.161765+0000 mgr.smithi099.hzjdah (mgr.14182) 1206 : audit [DBG] from='client.15484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:20.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:20 smithi099 bash[16328]: cluster 2024-01-27T23:52:19.203832+0000 mon.smithi099 (mon.0) 957 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:52:20.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:20 smithi099 bash[16328]: cluster 2024-01-27T23:52:19.203898+0000 mon.smithi099 (mon.0) 958 : cluster [INF] Cluster is now healthy 2024-01-27T23:52:20.801 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:21.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:21 smithi142 bash[20347]: cluster 2024-01-27T23:52:20.208800+0000 mgr.smithi099.hzjdah (mgr.14182) 1207 : 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-01-27T23:52:21.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:21 smithi099 bash[16328]: cluster 2024-01-27T23:52:20.208800+0000 mgr.smithi099.hzjdah (mgr.14182) 1207 : 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-01-27T23:52:22.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: cephadm 2024-01-27T23:52:21.993329+0000 mgr.smithi099.hzjdah (mgr.14182) 1208 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:22.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.zyllmi ... 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:52:22.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:52:22.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:22.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:22.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.zyllmi ... 2024-01-27T23:52:22.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:22.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:22.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:22.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: cephadm 2024-01-27T23:52:21.993916+0000 mgr.smithi099.hzjdah (mgr.14182) 1209 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: audit 2024-01-27T23:52:21.995344+0000 mon.smithi099 (mon.0) 959 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.zyllmi"}]: dispatch 2024-01-27T23:52:22.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: cephadm 2024-01-27T23:52:21.997002+0000 mgr.smithi099.hzjdah (mgr.14182) 1210 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.311 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:22.311 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.311 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.311 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:22.311 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.311 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.zyllmi ... 2024-01-27T23:52:22.312 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.312 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:22.312 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:22.312 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:22.312 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.313 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:22 smithi142 bash[20347]: cephadm 2024-01-27T23:52:22.002069+0000 mgr.smithi099.hzjdah (mgr.14182) 1211 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.qvjfyu on smithi099 2024-01-27T23:52:22.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: cephadm 2024-01-27T23:52:21.993329+0000 mgr.smithi099.hzjdah (mgr.14182) 1208 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:22.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.zyllmi ... 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:22.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:22.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.zyllmi ... 2024-01-27T23:52:22.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:22.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:22.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:22.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: cephadm 2024-01-27T23:52:21.993916+0000 mgr.smithi099.hzjdah (mgr.14182) 1209 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: audit 2024-01-27T23:52:21.995344+0000 mon.smithi099 (mon.0) 959 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.zyllmi"}]: dispatch 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: cephadm 2024-01-27T23:52:21.997002+0000 mgr.smithi099.hzjdah (mgr.14182) 1210 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.zyllmi ... 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:22.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:22 smithi099 bash[16328]: cephadm 2024-01-27T23:52:22.002069+0000 mgr.smithi099.hzjdah (mgr.14182) 1211 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.qvjfyu on smithi099 2024-01-27T23:52:23.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:23 smithi142 bash[20347]: cluster 2024-01-27T23:52:22.209631+0000 mgr.smithi099.hzjdah (mgr.14182) 1212 : cluster [DBG] pgmap v802: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:52:23.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:23 smithi099 bash[16328]: cluster 2024-01-27T23:52:22.209631+0000 mgr.smithi099.hzjdah (mgr.14182) 1212 : cluster [DBG] pgmap v802: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:52:24.471 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:24.471 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:13.957051Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lpslfs on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-lpslfs\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.lpslfs\nDeploy daemon haproxy.nfs.foo.smithi142.lpslfs ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.868350Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.srehqb on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-srehqb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.srehqb\nDeploy daemon haproxy.nfs.foo.smithi099.srehqb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:51:17.870926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.sdrkjv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:25.134 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:26.135 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:26.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:26 smithi142 bash[20347]: cluster 2024-01-27T23:52:24.210937+0000 mgr.smithi099.hzjdah (mgr.14182) 1213 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:52:26.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:26 smithi142 bash[20347]: audit 2024-01-27T23:52:24.461715+0000 mgr.smithi099.hzjdah (mgr.14182) 1214 : audit [DBG] from='client.15488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:26.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:26 smithi142 bash[20347]: audit 2024-01-27T23:52:25.402664+0000 mon.smithi099 (mon.0) 960 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:52:26.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:26 smithi142 bash[20347]: audit 2024-01-27T23:52:25.800740+0000 mon.smithi099 (mon.0) 961 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.qvjfyu"}]: dispatch 2024-01-27T23:52:26.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:26 smithi099 bash[16328]: cluster 2024-01-27T23:52:24.210937+0000 mgr.smithi099.hzjdah (mgr.14182) 1213 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:52:26.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:26 smithi099 bash[16328]: audit 2024-01-27T23:52:24.461715+0000 mgr.smithi099.hzjdah (mgr.14182) 1214 : audit [DBG] from='client.15488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:26.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:26 smithi099 bash[16328]: audit 2024-01-27T23:52:25.402664+0000 mon.smithi099 (mon.0) 960 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:52:26.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:26 smithi099 bash[16328]: audit 2024-01-27T23:52:25.800740+0000 mon.smithi099 (mon.0) 961 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.qvjfyu"}]: dispatch 2024-01-27T23:52:27.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: cephadm 2024-01-27T23:52:25.799668+0000 mgr.smithi099.hzjdah (mgr.14182) 1215 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:27.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.qvjfyu ... 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.qvjfyu ... 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: cephadm 2024-01-27T23:52:25.800223+0000 mgr.smithi099.hzjdah (mgr.14182) 1216 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: cephadm 2024-01-27T23:52:25.802103+0000 mgr.smithi099.hzjdah (mgr.14182) 1217 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.qvjfyu ... 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: cephadm 2024-01-27T23:52:25.805646+0000 mgr.smithi099.hzjdah (mgr.14182) 1218 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:52:27.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: cephadm 2024-01-27T23:52:25.808907+0000 mgr.smithi099.hzjdah (mgr.14182) 1219 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:52:27.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: cluster 2024-01-27T23:52:25.810717+0000 mgr.smithi099.hzjdah (mgr.14182) 1220 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:52:27.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:27 smithi142 bash[20347]: cluster 2024-01-27T23:52:26.398472+0000 mon.smithi099 (mon.0) 962 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: cephadm 2024-01-27T23:52:25.799668+0000 mgr.smithi099.hzjdah (mgr.14182) 1215 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.qvjfyu ... 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.qvjfyu ... 2024-01-27T23:52:27.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:27.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:27.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:27.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: cephadm 2024-01-27T23:52:25.800223+0000 mgr.smithi099.hzjdah (mgr.14182) 1216 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: cephadm 2024-01-27T23:52:25.802103+0000 mgr.smithi099.hzjdah (mgr.14182) 1217 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:27.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu 2024-01-27T23:52:27.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.qvjfyu ... 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: cephadm 2024-01-27T23:52:25.805646+0000 mgr.smithi099.hzjdah (mgr.14182) 1218 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: cephadm 2024-01-27T23:52:25.808907+0000 mgr.smithi099.hzjdah (mgr.14182) 1219 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: cluster 2024-01-27T23:52:25.810717+0000 mgr.smithi099.hzjdah (mgr.14182) 1220 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:52:27.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:27 smithi099 bash[16328]: cluster 2024-01-27T23:52:26.398472+0000 mon.smithi099 (mon.0) 962 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:52:29.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:29 smithi099 bash[16328]: cluster 2024-01-27T23:52:27.812686+0000 mgr.smithi099.hzjdah (mgr.14182) 1221 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:52:29.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:29 smithi099 bash[16328]: audit 2024-01-27T23:52:29.016091+0000 mon.smithi099 (mon.0) 963 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:52:29.535 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:29.535 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:29.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:29 smithi142 bash[20347]: cluster 2024-01-27T23:52:27.812686+0000 mgr.smithi099.hzjdah (mgr.14182) 1221 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:52:29.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:29 smithi142 bash[20347]: audit 2024-01-27T23:52:29.016091+0000 mon.smithi099 (mon.0) 963 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:52:30.226 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:31.227 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:31 smithi142 bash[20347]: audit 2024-01-27T23:52:29.522576+0000 mgr.smithi099.hzjdah (mgr.14182) 1222 : audit [DBG] from='client.15492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:31 smithi142 bash[20347]: cluster 2024-01-27T23:52:29.814200+0000 mgr.smithi099.hzjdah (mgr.14182) 1223 : cluster [DBG] pgmap v806: 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-01-27T23:52:31.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:31 smithi099 bash[16328]: audit 2024-01-27T23:52:29.522576+0000 mgr.smithi099.hzjdah (mgr.14182) 1222 : audit [DBG] from='client.15492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:31.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:31 smithi099 bash[16328]: cluster 2024-01-27T23:52:29.814200+0000 mgr.smithi099.hzjdah (mgr.14182) 1223 : cluster [DBG] pgmap v806: 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-01-27T23:52:33.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:33 smithi099 bash[16328]: cluster 2024-01-27T23:52:31.815889+0000 mgr.smithi099.hzjdah (mgr.14182) 1224 : cluster [DBG] pgmap v807: 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-01-27T23:52:33.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:33 smithi142 bash[20347]: cluster 2024-01-27T23:52:31.815889+0000 mgr.smithi099.hzjdah (mgr.14182) 1224 : cluster [DBG] pgmap v807: 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-01-27T23:52:34.514 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:34.514 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:35.143 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:35.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:35 smithi099 bash[16328]: cluster 2024-01-27T23:52:33.817419+0000 mgr.smithi099.hzjdah (mgr.14182) 1225 : cluster [DBG] pgmap v808: 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-01-27T23:52:35.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:35 smithi142 bash[20347]: cluster 2024-01-27T23:52:33.817419+0000 mgr.smithi099.hzjdah (mgr.14182) 1225 : cluster [DBG] pgmap v808: 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-01-27T23:52:36.143 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:36.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:36 smithi142 bash[20347]: audit 2024-01-27T23:52:34.502844+0000 mgr.smithi099.hzjdah (mgr.14182) 1226 : audit [DBG] from='client.15496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:36.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:36 smithi099 bash[16328]: audit 2024-01-27T23:52:34.502844+0000 mgr.smithi099.hzjdah (mgr.14182) 1226 : audit [DBG] from='client.15496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:37.361 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:37 smithi099 bash[16328]: cluster 2024-01-27T23:52:35.819000+0000 mgr.smithi099.hzjdah (mgr.14182) 1227 : cluster [DBG] pgmap v809: 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-01-27T23:52:37.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:37 smithi142 bash[20347]: cluster 2024-01-27T23:52:35.819000+0000 mgr.smithi099.hzjdah (mgr.14182) 1227 : cluster [DBG] pgmap v809: 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-01-27T23:52:38.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:38 smithi142 bash[20347]: cluster 2024-01-27T23:52:37.820993+0000 mgr.smithi099.hzjdah (mgr.14182) 1228 : 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-01-27T23:52:38.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:38 smithi099 bash[16328]: cluster 2024-01-27T23:52:37.820993+0000 mgr.smithi099.hzjdah (mgr.14182) 1228 : 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-01-27T23:52:39.332 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:39.332 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:39.935 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:40.936 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:41.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:41 smithi142 bash[20347]: audit 2024-01-27T23:52:39.327096+0000 mgr.smithi099.hzjdah (mgr.14182) 1229 : audit [DBG] from='client.15500 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:41.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:41 smithi142 bash[20347]: cluster 2024-01-27T23:52:39.822430+0000 mgr.smithi099.hzjdah (mgr.14182) 1230 : 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-01-27T23:52:41.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:41 smithi142 bash[20347]: audit 2024-01-27T23:52:40.401031+0000 mon.smithi099 (mon.0) 964 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:52:41.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:41 smithi099 bash[16328]: audit 2024-01-27T23:52:39.327096+0000 mgr.smithi099.hzjdah (mgr.14182) 1229 : audit [DBG] from='client.15500 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:41.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:41 smithi099 bash[16328]: cluster 2024-01-27T23:52:39.822430+0000 mgr.smithi099.hzjdah (mgr.14182) 1230 : 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-01-27T23:52:41.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:41 smithi099 bash[16328]: audit 2024-01-27T23:52:40.401031+0000 mon.smithi099 (mon.0) 964 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:52:43.461 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:43 smithi099 bash[16328]: cluster 2024-01-27T23:52:41.823975+0000 mgr.smithi099.hzjdah (mgr.14182) 1231 : cluster [DBG] pgmap v812: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:43.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:43 smithi142 bash[20347]: cluster 2024-01-27T23:52:41.823975+0000 mgr.smithi099.hzjdah (mgr.14182) 1231 : cluster [DBG] pgmap v812: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:44.286 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:44.286 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:44.941 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:45.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:45 smithi099 bash[16328]: cluster 2024-01-27T23:52:43.825178+0000 mgr.smithi099.hzjdah (mgr.14182) 1232 : 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-01-27T23:52:45.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:45 smithi142 bash[20347]: cluster 2024-01-27T23:52:43.825178+0000 mgr.smithi099.hzjdah (mgr.14182) 1232 : 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-01-27T23:52:45.942 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:46.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:46 smithi099 bash[16328]: audit 2024-01-27T23:52:44.276026+0000 mgr.smithi099.hzjdah (mgr.14182) 1233 : audit [DBG] from='client.15504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:46.555 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:46 smithi142 bash[20347]: audit 2024-01-27T23:52:44.276026+0000 mgr.smithi099.hzjdah (mgr.14182) 1233 : audit [DBG] from='client.15504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:47.292 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:47 smithi099 bash[16328]: cluster 2024-01-27T23:52:45.826706+0000 mgr.smithi099.hzjdah (mgr.14182) 1234 : cluster [DBG] pgmap v814: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:52:47.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:47 smithi142 bash[20347]: cluster 2024-01-27T23:52:45.826706+0000 mgr.smithi099.hzjdah (mgr.14182) 1234 : cluster [DBG] pgmap v814: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:52:49.046 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:49.046 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:49.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:49 smithi099 bash[16328]: cluster 2024-01-27T23:52:47.828524+0000 mgr.smithi099.hzjdah (mgr.14182) 1235 : 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-01-27T23:52:49.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:49 smithi142 bash[20347]: cluster 2024-01-27T23:52:47.828524+0000 mgr.smithi099.hzjdah (mgr.14182) 1235 : 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-01-27T23:52:49.655 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:50.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:50 smithi142 bash[20347]: audit 2024-01-27T23:52:49.034544+0000 mgr.smithi099.hzjdah (mgr.14182) 1236 : audit [DBG] from='client.15508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:50.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:50 smithi099 bash[16328]: audit 2024-01-27T23:52:49.034544+0000 mgr.smithi099.hzjdah (mgr.14182) 1236 : audit [DBG] from='client.15508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:50.656 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:51.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:51 smithi142 bash[20347]: cluster 2024-01-27T23:52:49.829893+0000 mgr.smithi099.hzjdah (mgr.14182) 1237 : 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-01-27T23:52:51.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:51 smithi099 bash[16328]: cluster 2024-01-27T23:52:49.829893+0000 mgr.smithi099.hzjdah (mgr.14182) 1237 : 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-01-27T23:52:52.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:52 smithi142 bash[20347]: cluster 2024-01-27T23:52:51.831077+0000 mgr.smithi099.hzjdah (mgr.14182) 1238 : cluster [DBG] pgmap v817: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:52.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:52 smithi099 bash[16328]: cluster 2024-01-27T23:52:51.831077+0000 mgr.smithi099.hzjdah (mgr.14182) 1238 : cluster [DBG] pgmap v817: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:52:53.904 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:53.904 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:54.515 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:55.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:55 smithi142 bash[20347]: cluster 2024-01-27T23:52:53.832623+0000 mgr.smithi099.hzjdah (mgr.14182) 1239 : 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-01-27T23:52:55.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:55 smithi142 bash[20347]: audit 2024-01-27T23:52:53.899541+0000 mgr.smithi099.hzjdah (mgr.14182) 1240 : audit [DBG] from='client.15512 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:55.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:55 smithi099 bash[16328]: cluster 2024-01-27T23:52:53.832623+0000 mgr.smithi099.hzjdah (mgr.14182) 1239 : 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-01-27T23:52:55.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:55 smithi099 bash[16328]: audit 2024-01-27T23:52:53.899541+0000 mgr.smithi099.hzjdah (mgr.14182) 1240 : audit [DBG] from='client.15512 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:52:55.516 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:52:57.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:57 smithi099 bash[16328]: cluster 2024-01-27T23:52:55.834159+0000 mgr.smithi099.hzjdah (mgr.14182) 1241 : cluster [DBG] pgmap v819: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:52:57.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:57 smithi142 bash[20347]: cluster 2024-01-27T23:52:55.834159+0000 mgr.smithi099.hzjdah (mgr.14182) 1241 : cluster [DBG] pgmap v819: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:52:58.729 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:52:58.729 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:52:59.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:52:59 smithi099 bash[16328]: cluster 2024-01-27T23:52:57.835440+0000 mgr.smithi099.hzjdah (mgr.14182) 1242 : 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-01-27T23:52:59.352 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:52:59.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:52:59 smithi142 bash[20347]: cluster 2024-01-27T23:52:57.835440+0000 mgr.smithi099.hzjdah (mgr.14182) 1242 : 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-01-27T23:53:00.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:00 smithi099 bash[16328]: audit 2024-01-27T23:52:58.716268+0000 mgr.smithi099.hzjdah (mgr.14182) 1243 : audit [DBG] from='client.15516 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:00.352 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:00.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:00 smithi142 bash[20347]: audit 2024-01-27T23:52:58.716268+0000 mgr.smithi099.hzjdah (mgr.14182) 1243 : audit [DBG] from='client.15516 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:01 smithi142 bash[20347]: cluster 2024-01-27T23:52:59.836834+0000 mgr.smithi099.hzjdah (mgr.14182) 1244 : 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-01-27T23:53:01.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:01 smithi099 bash[16328]: cluster 2024-01-27T23:52:59.836834+0000 mgr.smithi099.hzjdah (mgr.14182) 1244 : 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-01-27T23:53:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:03 smithi099 bash[16328]: cluster 2024-01-27T23:53:01.837889+0000 mgr.smithi099.hzjdah (mgr.14182) 1245 : cluster [DBG] pgmap v822: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:03.433 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:03.433 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:03.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:03 smithi142 bash[20347]: cluster 2024-01-27T23:53:01.837889+0000 mgr.smithi099.hzjdah (mgr.14182) 1245 : cluster [DBG] pgmap v822: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:04.059 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:05.060 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:05.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:05 smithi099 bash[16328]: audit 2024-01-27T23:53:03.420954+0000 mgr.smithi099.hzjdah (mgr.14182) 1246 : audit [DBG] from='client.15520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:05.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:05 smithi099 bash[16328]: cluster 2024-01-27T23:53:03.839499+0000 mgr.smithi099.hzjdah (mgr.14182) 1247 : 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-01-27T23:53:05.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:05 smithi142 bash[20347]: audit 2024-01-27T23:53:03.420954+0000 mgr.smithi099.hzjdah (mgr.14182) 1246 : audit [DBG] from='client.15520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:05.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:05 smithi142 bash[20347]: cluster 2024-01-27T23:53:03.839499+0000 mgr.smithi099.hzjdah (mgr.14182) 1247 : 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-01-27T23:53:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:07 smithi142 bash[20347]: cluster 2024-01-27T23:53:05.840510+0000 mgr.smithi099.hzjdah (mgr.14182) 1248 : cluster [DBG] pgmap v824: 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-01-27T23:53:07.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:07 smithi099 bash[16328]: cluster 2024-01-27T23:53:05.840510+0000 mgr.smithi099.hzjdah (mgr.14182) 1248 : cluster [DBG] pgmap v824: 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-01-27T23:53:08.216 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:08.216 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:08.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:08 smithi142 bash[20347]: cluster 2024-01-27T23:53:07.842480+0000 mgr.smithi099.hzjdah (mgr.14182) 1249 : cluster [DBG] pgmap v825: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:53:08.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:08 smithi099 bash[16328]: cluster 2024-01-27T23:53:07.842480+0000 mgr.smithi099.hzjdah (mgr.14182) 1249 : cluster [DBG] pgmap v825: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:53:08.884 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:09.885 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:10.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:10 smithi099 bash[16328]: audit 2024-01-27T23:53:08.202369+0000 mgr.smithi099.hzjdah (mgr.14182) 1250 : audit [DBG] from='client.15524 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:10 smithi142 bash[20347]: audit 2024-01-27T23:53:08.202369+0000 mgr.smithi099.hzjdah (mgr.14182) 1250 : audit [DBG] from='client.15524 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:11.199 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:11 smithi099 bash[16328]: cluster 2024-01-27T23:53:09.843898+0000 mgr.smithi099.hzjdah (mgr.14182) 1251 : cluster [DBG] pgmap v826: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:53:11.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:11 smithi142 bash[20347]: cluster 2024-01-27T23:53:09.843898+0000 mgr.smithi099.hzjdah (mgr.14182) 1251 : cluster [DBG] pgmap v826: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:53:13.091 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:13.091 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:13.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:13 smithi099 bash[16328]: cluster 2024-01-27T23:53:11.845643+0000 mgr.smithi099.hzjdah (mgr.14182) 1252 : cluster [DBG] pgmap v827: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:53:13.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:13 smithi142 bash[20347]: cluster 2024-01-27T23:53:11.845643+0000 mgr.smithi099.hzjdah (mgr.14182) 1252 : cluster [DBG] pgmap v827: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:53:13.725 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:14.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:14 smithi099 bash[16328]: audit 2024-01-27T23:53:13.081997+0000 mgr.smithi099.hzjdah (mgr.14182) 1253 : audit [DBG] from='client.15528 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:14.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:14 smithi142 bash[20347]: audit 2024-01-27T23:53:13.081997+0000 mgr.smithi099.hzjdah (mgr.14182) 1253 : audit [DBG] from='client.15528 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:14.726 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:15.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:15 smithi142 bash[20347]: cluster 2024-01-27T23:53:13.847079+0000 mgr.smithi099.hzjdah (mgr.14182) 1254 : cluster [DBG] pgmap v828: 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-01-27T23:53:15.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:15 smithi099 bash[16328]: cluster 2024-01-27T23:53:13.847079+0000 mgr.smithi099.hzjdah (mgr.14182) 1254 : cluster [DBG] pgmap v828: 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-01-27T23:53:17.509 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:17 smithi099 bash[16328]: cluster 2024-01-27T23:53:15.848566+0000 mgr.smithi099.hzjdah (mgr.14182) 1255 : cluster [DBG] pgmap v829: 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-01-27T23:53:17.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:17 smithi142 bash[20347]: cluster 2024-01-27T23:53:15.848566+0000 mgr.smithi099.hzjdah (mgr.14182) 1255 : cluster [DBG] pgmap v829: 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-01-27T23:53:17.948 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:17.948 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:18.584 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:19 smithi142 bash[20347]: cluster 2024-01-27T23:53:17.850395+0000 mgr.smithi099.hzjdah (mgr.14182) 1256 : cluster [DBG] pgmap v830: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:19 smithi142 bash[20347]: audit 2024-01-27T23:53:17.939784+0000 mgr.smithi099.hzjdah (mgr.14182) 1257 : audit [DBG] from='client.15532 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:19.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:19 smithi099 bash[16328]: cluster 2024-01-27T23:53:17.850395+0000 mgr.smithi099.hzjdah (mgr.14182) 1256 : cluster [DBG] pgmap v830: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:19.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:19 smithi099 bash[16328]: audit 2024-01-27T23:53:17.939784+0000 mgr.smithi099.hzjdah (mgr.14182) 1257 : audit [DBG] from='client.15532 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:19.585 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:20.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:20 smithi142 bash[20347]: cluster 2024-01-27T23:53:19.851167+0000 mgr.smithi099.hzjdah (mgr.14182) 1258 : cluster [DBG] pgmap v831: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:20.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:20 smithi099 bash[16328]: cluster 2024-01-27T23:53:19.851167+0000 mgr.smithi099.hzjdah (mgr.14182) 1258 : cluster [DBG] pgmap v831: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:22.828 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:22.828 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:23.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:22 smithi142 bash[20347]: cluster 2024-01-27T23:53:21.852816+0000 mgr.smithi099.hzjdah (mgr.14182) 1259 : cluster [DBG] pgmap v832: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:23.333 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:22 smithi099 bash[16328]: cluster 2024-01-27T23:53:21.852816+0000 mgr.smithi099.hzjdah (mgr.14182) 1259 : cluster [DBG] pgmap v832: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:23.472 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:24.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:23 smithi142 bash[20347]: audit 2024-01-27T23:53:22.815923+0000 mgr.smithi099.hzjdah (mgr.14182) 1260 : audit [DBG] from='client.15536 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:24.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:23 smithi099 bash[16328]: audit 2024-01-27T23:53:22.815923+0000 mgr.smithi099.hzjdah (mgr.14182) 1260 : audit [DBG] from='client.15536 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:24.474 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:25.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:25 smithi099 bash[16328]: cluster 2024-01-27T23:53:23.854482+0000 mgr.smithi099.hzjdah (mgr.14182) 1261 : cluster [DBG] pgmap v833: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:25.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:25 smithi142 bash[20347]: cluster 2024-01-27T23:53:23.854482+0000 mgr.smithi099.hzjdah (mgr.14182) 1261 : cluster [DBG] pgmap v833: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:26.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:26 smithi099 bash[16328]: audit 2024-01-27T23:53:25.812608+0000 mon.smithi099 (mon.0) 965 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:53:26.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:26 smithi142 bash[20347]: audit 2024-01-27T23:53:25.812608+0000 mon.smithi099 (mon.0) 965 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:53:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:27 smithi099 bash[16328]: cluster 2024-01-27T23:53:25.855509+0000 mgr.smithi099.hzjdah (mgr.14182) 1262 : cluster [DBG] pgmap v834: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:53:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:27 smithi099 bash[16328]: audit 2024-01-27T23:53:26.132649+0000 mon.smithi099 (mon.0) 966 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:53:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:27 smithi099 bash[16328]: audit 2024-01-27T23:53:26.134436+0000 mon.smithi099 (mon.0) 967 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:53:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:27 smithi099 bash[16328]: audit 2024-01-27T23:53:26.143361+0000 mon.smithi099 (mon.0) 968 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:53:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:27 smithi099 bash[16328]: audit 2024-01-27T23:53:26.151510+0000 mon.smithi099 (mon.0) 969 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:53:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:27 smithi099 bash[16328]: audit 2024-01-27T23:53:26.165872+0000 mon.smithi099 (mon.0) 970 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:53:27.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:27 smithi142 bash[20347]: cluster 2024-01-27T23:53:25.855509+0000 mgr.smithi099.hzjdah (mgr.14182) 1262 : cluster [DBG] pgmap v834: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:53:27.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:27 smithi142 bash[20347]: audit 2024-01-27T23:53:26.132649+0000 mon.smithi099 (mon.0) 966 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:53:27.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:27 smithi142 bash[20347]: audit 2024-01-27T23:53:26.134436+0000 mon.smithi099 (mon.0) 967 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:53:27.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:27 smithi142 bash[20347]: audit 2024-01-27T23:53:26.143361+0000 mon.smithi099 (mon.0) 968 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:53:27.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:27 smithi142 bash[20347]: audit 2024-01-27T23:53:26.151510+0000 mon.smithi099 (mon.0) 969 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:53:27.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:27 smithi142 bash[20347]: audit 2024-01-27T23:53:26.165872+0000 mon.smithi099 (mon.0) 970 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:53:27.699 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:27.699 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:51:17.873058Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.qarvsc on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:28.280 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:28.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:28 smithi099 bash[16328]: cluster 2024-01-27T23:53:26.144428+0000 mgr.smithi099.hzjdah (mgr.14182) 1263 : 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-01-27T23:53:28.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:28 smithi099 bash[16328]: cephadm 2024-01-27T23:53:26.169288+0000 mgr.smithi099.hzjdah (mgr.14182) 1264 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.sbxqho on smithi142 2024-01-27T23:53:28.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:28 smithi099 bash[16328]: cluster 2024-01-27T23:53:27.140221+0000 mon.smithi099 (mon.0) 971 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:53:28.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:28 smithi099 bash[16328]: cluster 2024-01-27T23:53:27.140287+0000 mon.smithi099 (mon.0) 972 : cluster [INF] Cluster is now healthy 2024-01-27T23:53:28.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:28 smithi142 bash[20347]: cluster 2024-01-27T23:53:26.144428+0000 mgr.smithi099.hzjdah (mgr.14182) 1263 : 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-01-27T23:53:28.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:28 smithi142 bash[20347]: cephadm 2024-01-27T23:53:26.169288+0000 mgr.smithi099.hzjdah (mgr.14182) 1264 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.sbxqho on smithi142 2024-01-27T23:53:28.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:28 smithi142 bash[20347]: cluster 2024-01-27T23:53:27.140221+0000 mon.smithi099 (mon.0) 971 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:53:28.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:28 smithi142 bash[20347]: cluster 2024-01-27T23:53:27.140287+0000 mon.smithi099 (mon.0) 972 : cluster [INF] Cluster is now healthy 2024-01-27T23:53:29.282 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:29.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:29 smithi142 bash[20347]: audit 2024-01-27T23:53:27.693680+0000 mgr.smithi099.hzjdah (mgr.14182) 1265 : audit [DBG] from='client.15540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:29.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:29 smithi099 bash[16328]: audit 2024-01-27T23:53:27.693680+0000 mgr.smithi099.hzjdah (mgr.14182) 1265 : audit [DBG] from='client.15540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:30.425 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:30 smithi099 bash[16328]: cluster 2024-01-27T23:53:28.146136+0000 mgr.smithi099.hzjdah (mgr.14182) 1266 : 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-01-27T23:53:30.471 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:30 smithi142 bash[20347]: cluster 2024-01-27T23:53:28.146136+0000 mgr.smithi099.hzjdah (mgr.14182) 1266 : 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-01-27T23:53:31.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:31 smithi142 bash[20347]: audit 2024-01-27T23:53:30.542336+0000 mon.smithi099 (mon.0) 973 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.sbxqho"}]: dispatch 2024-01-27T23:53:31.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:31 smithi099 bash[16328]: audit 2024-01-27T23:53:30.542336+0000 mon.smithi099 (mon.0) 973 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.sbxqho"}]: dispatch 2024-01-27T23:53:32.533 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:32.533 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:21.996755Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zyllmi on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-zyllmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.zyllmi\nDeploy daemon haproxy.nfs.foo.smithi142.zyllmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.801857Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.qvjfyu on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-qvjfyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.qvjfyu\nDeploy daemon haproxy.nfs.foo.smithi099.qvjfyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:52:25.805463Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.eiejyl on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:32.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: cluster 2024-01-27T23:53:30.147397+0000 mgr.smithi099.hzjdah (mgr.14182) 1267 : 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-01-27T23:53:32.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: cephadm 2024-01-27T23:53:30.541238+0000 mgr.smithi099.hzjdah (mgr.14182) 1268 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:32.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.sbxqho ... 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:53:32.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.sbxqho ... 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: cephadm 2024-01-27T23:53:30.541682+0000 mgr.smithi099.hzjdah (mgr.14182) 1269 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: cephadm 2024-01-27T23:53:30.543651+0000 mgr.smithi099.hzjdah (mgr.14182) 1270 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.sbxqho ... 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:32 smithi142 bash[20347]: cephadm 2024-01-27T23:53:30.547865+0000 mgr.smithi099.hzjdah (mgr.14182) 1271 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.xgfxer on smithi099 2024-01-27T23:53:32.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: cluster 2024-01-27T23:53:30.147397+0000 mgr.smithi099.hzjdah (mgr.14182) 1267 : 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-01-27T23:53:32.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: cephadm 2024-01-27T23:53:30.541238+0000 mgr.smithi099.hzjdah (mgr.14182) 1268 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:32.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.sbxqho ... 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:53:32.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.sbxqho ... 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: cephadm 2024-01-27T23:53:30.541682+0000 mgr.smithi099.hzjdah (mgr.14182) 1269 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: cephadm 2024-01-27T23:53:30.543651+0000 mgr.smithi099.hzjdah (mgr.14182) 1270 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.sbxqho ... 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:32.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:32 smithi099 bash[16328]: cephadm 2024-01-27T23:53:30.547865+0000 mgr.smithi099.hzjdah (mgr.14182) 1271 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.xgfxer on smithi099 2024-01-27T23:53:33.192 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:33.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:33 smithi142 bash[20347]: cluster 2024-01-27T23:53:32.149221+0000 mgr.smithi099.hzjdah (mgr.14182) 1272 : cluster [DBG] pgmap v838: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:53:33.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:33 smithi142 bash[20347]: audit 2024-01-27T23:53:32.524204+0000 mgr.smithi099.hzjdah (mgr.14182) 1273 : audit [DBG] from='client.15544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:33.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:33 smithi099 bash[16328]: cluster 2024-01-27T23:53:32.149221+0000 mgr.smithi099.hzjdah (mgr.14182) 1272 : cluster [DBG] pgmap v838: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:53:33.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:33 smithi099 bash[16328]: audit 2024-01-27T23:53:32.524204+0000 mgr.smithi099.hzjdah (mgr.14182) 1273 : audit [DBG] from='client.15544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:34.193 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:35.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:35 smithi099 bash[16328]: audit 2024-01-27T23:53:34.897264+0000 mon.smithi099 (mon.0) 974 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.xgfxer"}]: dispatch 2024-01-27T23:53:35.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:35 smithi142 bash[20347]: audit 2024-01-27T23:53:34.897264+0000 mon.smithi099 (mon.0) 974 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.xgfxer"}]: dispatch 2024-01-27T23:53:36.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: cluster 2024-01-27T23:53:34.150655+0000 mgr.smithi099.hzjdah (mgr.14182) 1274 : cluster [DBG] pgmap v839: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:53:36.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: cephadm 2024-01-27T23:53:34.896471+0000 mgr.smithi099.hzjdah (mgr.14182) 1275 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:36.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.xgfxer ... 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:53:36.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.xgfxer ... 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: cephadm 2024-01-27T23:53:34.896756+0000 mgr.smithi099.hzjdah (mgr.14182) 1276 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: cephadm 2024-01-27T23:53:34.898369+0000 mgr.smithi099.hzjdah (mgr.14182) 1277 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.xgfxer ... 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: cephadm 2024-01-27T23:53:34.900428+0000 mgr.smithi099.hzjdah (mgr.14182) 1278 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:53:36.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: cephadm 2024-01-27T23:53:34.902234+0000 mgr.smithi099.hzjdah (mgr.14182) 1279 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:53:36.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: cluster 2024-01-27T23:53:34.903478+0000 mgr.smithi099.hzjdah (mgr.14182) 1280 : cluster [DBG] pgmap v840: 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-01-27T23:53:36.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:36 smithi099 bash[16328]: cluster 2024-01-27T23:53:35.062850+0000 mon.smithi099 (mon.0) 975 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:53:36.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: cluster 2024-01-27T23:53:34.150655+0000 mgr.smithi099.hzjdah (mgr.14182) 1274 : cluster [DBG] pgmap v839: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:53:36.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: cephadm 2024-01-27T23:53:34.896471+0000 mgr.smithi099.hzjdah (mgr.14182) 1275 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.xgfxer ... 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.xgfxer ... 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: cephadm 2024-01-27T23:53:34.896756+0000 mgr.smithi099.hzjdah (mgr.14182) 1276 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: cephadm 2024-01-27T23:53:34.898369+0000 mgr.smithi099.hzjdah (mgr.14182) 1277 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer 2024-01-27T23:53:36.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.xgfxer ... 2024-01-27T23:53:36.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:53:36.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:53:36.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:53:36.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:53:36.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: cephadm 2024-01-27T23:53:34.900428+0000 mgr.smithi099.hzjdah (mgr.14182) 1278 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:53:36.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: cephadm 2024-01-27T23:53:34.902234+0000 mgr.smithi099.hzjdah (mgr.14182) 1279 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:53:36.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: cluster 2024-01-27T23:53:34.903478+0000 mgr.smithi099.hzjdah (mgr.14182) 1280 : cluster [DBG] pgmap v840: 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-01-27T23:53:36.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:36 smithi142 bash[20347]: cluster 2024-01-27T23:53:35.062850+0000 mon.smithi099 (mon.0) 975 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:53:37.603 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:37.603 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:38.152 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:38.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:38 smithi099 bash[16328]: cluster 2024-01-27T23:53:36.904789+0000 mgr.smithi099.hzjdah (mgr.14182) 1281 : cluster [DBG] pgmap v841: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-27T23:53:38.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:38 smithi142 bash[20347]: cluster 2024-01-27T23:53:36.904789+0000 mgr.smithi099.hzjdah (mgr.14182) 1281 : cluster [DBG] pgmap v841: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-27T23:53:39.153 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:39.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:39 smithi142 bash[20347]: audit 2024-01-27T23:53:37.589282+0000 mgr.smithi099.hzjdah (mgr.14182) 1282 : audit [DBG] from='client.15548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:39.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:39 smithi142 bash[20347]: audit 2024-01-27T23:53:39.076642+0000 mon.smithi099 (mon.0) 976 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:53:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:39 smithi099 bash[16328]: audit 2024-01-27T23:53:37.589282+0000 mgr.smithi099.hzjdah (mgr.14182) 1282 : audit [DBG] from='client.15548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:39 smithi099 bash[16328]: audit 2024-01-27T23:53:39.076642+0000 mon.smithi099 (mon.0) 976 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:53:40.516 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:40 smithi099 bash[16328]: cluster 2024-01-27T23:53:38.906422+0000 mgr.smithi099.hzjdah (mgr.14182) 1283 : cluster [DBG] pgmap v842: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-27T23:53:40.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:40 smithi142 bash[20347]: cluster 2024-01-27T23:53:38.906422+0000 mgr.smithi099.hzjdah (mgr.14182) 1283 : cluster [DBG] pgmap v842: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-27T23:53:42.263 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:42.264 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:42.353 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:42 smithi099 bash[16328]: cluster 2024-01-27T23:53:40.907841+0000 mgr.smithi099.hzjdah (mgr.14182) 1284 : cluster [DBG] pgmap v843: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-27T23:53:42.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:42 smithi142 bash[20347]: cluster 2024-01-27T23:53:40.907841+0000 mgr.smithi099.hzjdah (mgr.14182) 1284 : cluster [DBG] pgmap v843: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-27T23:53:42.939 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:43.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:43 smithi142 bash[20347]: audit 2024-01-27T23:53:42.258483+0000 mgr.smithi099.hzjdah (mgr.14182) 1285 : audit [DBG] from='client.15552 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:43.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:43 smithi142 bash[20347]: cluster 2024-01-27T23:53:42.909582+0000 mgr.smithi099.hzjdah (mgr.14182) 1286 : cluster [DBG] pgmap v844: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-27T23:53:43.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:43 smithi099 bash[16328]: audit 2024-01-27T23:53:42.258483+0000 mgr.smithi099.hzjdah (mgr.14182) 1285 : audit [DBG] from='client.15552 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:43.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:43 smithi099 bash[16328]: cluster 2024-01-27T23:53:42.909582+0000 mgr.smithi099.hzjdah (mgr.14182) 1286 : cluster [DBG] pgmap v844: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2024-01-27T23:53:43.940 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:46.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:46 smithi099 bash[16328]: cluster 2024-01-27T23:53:44.910701+0000 mgr.smithi099.hzjdah (mgr.14182) 1287 : cluster [DBG] pgmap v845: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 190 B/s rd, 0 op/s 2024-01-27T23:53:46.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:46 smithi142 bash[20347]: cluster 2024-01-27T23:53:44.910701+0000 mgr.smithi099.hzjdah (mgr.14182) 1287 : cluster [DBG] pgmap v845: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 190 B/s rd, 0 op/s 2024-01-27T23:53:47.182 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:47.182 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:47.802 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:48.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:48 smithi099 bash[16328]: cluster 2024-01-27T23:53:46.912392+0000 mgr.smithi099.hzjdah (mgr.14182) 1288 : 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-01-27T23:53:48.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:48 smithi142 bash[20347]: cluster 2024-01-27T23:53:46.912392+0000 mgr.smithi099.hzjdah (mgr.14182) 1288 : 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-01-27T23:53:48.803 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:49.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:49 smithi142 bash[20347]: audit 2024-01-27T23:53:47.169244+0000 mgr.smithi099.hzjdah (mgr.14182) 1289 : audit [DBG] from='client.15556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:49.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:49 smithi099 bash[16328]: audit 2024-01-27T23:53:47.169244+0000 mgr.smithi099.hzjdah (mgr.14182) 1289 : audit [DBG] from='client.15556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:50.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:50 smithi099 bash[16328]: cluster 2024-01-27T23:53:48.913960+0000 mgr.smithi099.hzjdah (mgr.14182) 1290 : 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-01-27T23:53:50.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:50 smithi142 bash[20347]: cluster 2024-01-27T23:53:48.913960+0000 mgr.smithi099.hzjdah (mgr.14182) 1290 : 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-01-27T23:53:52.068 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:52.069 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:52.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:52 smithi142 bash[20347]: cluster 2024-01-27T23:53:50.915403+0000 mgr.smithi099.hzjdah (mgr.14182) 1291 : 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-01-27T23:53:52.583 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:52 smithi099 bash[16328]: cluster 2024-01-27T23:53:50.915403+0000 mgr.smithi099.hzjdah (mgr.14182) 1291 : 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-01-27T23:53:52.663 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:53.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:53 smithi142 bash[20347]: audit 2024-01-27T23:53:52.060053+0000 mgr.smithi099.hzjdah (mgr.14182) 1292 : audit [DBG] from='client.15560 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:53.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:53 smithi099 bash[16328]: audit 2024-01-27T23:53:52.060053+0000 mgr.smithi099.hzjdah (mgr.14182) 1292 : audit [DBG] from='client.15560 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:53.664 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:53:54.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:54 smithi142 bash[20347]: cluster 2024-01-27T23:53:52.917422+0000 mgr.smithi099.hzjdah (mgr.14182) 1293 : cluster [DBG] pgmap v849: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:54.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:54 smithi099 bash[16328]: cluster 2024-01-27T23:53:52.917422+0000 mgr.smithi099.hzjdah (mgr.14182) 1293 : cluster [DBG] pgmap v849: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:53:55.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:55 smithi142 bash[20347]: cluster 2024-01-27T23:53:54.918491+0000 mgr.smithi099.hzjdah (mgr.14182) 1294 : cluster [DBG] pgmap v850: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:53:55.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:55 smithi099 bash[16328]: cluster 2024-01-27T23:53:54.918491+0000 mgr.smithi099.hzjdah (mgr.14182) 1294 : cluster [DBG] pgmap v850: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:53:56.888 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:53:56.888 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:53:57.517 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:53:58.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:57 smithi142 bash[20347]: audit 2024-01-27T23:53:56.875740+0000 mgr.smithi099.hzjdah (mgr.14182) 1295 : audit [DBG] from='client.15564 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:58.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:53:57 smithi142 bash[20347]: cluster 2024-01-27T23:53:56.919948+0000 mgr.smithi099.hzjdah (mgr.14182) 1296 : 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-01-27T23:53:58.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:57 smithi099 bash[16328]: audit 2024-01-27T23:53:56.875740+0000 mgr.smithi099.hzjdah (mgr.14182) 1295 : audit [DBG] from='client.15564 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:53:58.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:53:57 smithi099 bash[16328]: cluster 2024-01-27T23:53:56.919948+0000 mgr.smithi099.hzjdah (mgr.14182) 1296 : 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-01-27T23:53:58.518 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:00.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:00 smithi099 bash[16328]: cluster 2024-01-27T23:53:58.921525+0000 mgr.smithi099.hzjdah (mgr.14182) 1297 : cluster [DBG] pgmap v852: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:00.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:00 smithi142 bash[20347]: cluster 2024-01-27T23:53:58.921525+0000 mgr.smithi099.hzjdah (mgr.14182) 1297 : cluster [DBG] pgmap v852: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:01.711 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:01.712 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:02.346 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:02 smithi099 bash[16328]: cluster 2024-01-27T23:54:00.922888+0000 mgr.smithi099.hzjdah (mgr.14182) 1298 : cluster [DBG] pgmap v853: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:02.347 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:02.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:02 smithi142 bash[20347]: cluster 2024-01-27T23:54:00.922888+0000 mgr.smithi099.hzjdah (mgr.14182) 1298 : cluster [DBG] pgmap v853: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:03.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:03 smithi099 bash[16328]: audit 2024-01-27T23:54:01.698813+0000 mgr.smithi099.hzjdah (mgr.14182) 1299 : audit [DBG] from='client.15568 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:03.348 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:03.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:03 smithi142 bash[20347]: audit 2024-01-27T23:54:01.698813+0000 mgr.smithi099.hzjdah (mgr.14182) 1299 : audit [DBG] from='client.15568 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:04.429 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:04 smithi099 bash[16328]: cluster 2024-01-27T23:54:02.925539+0000 mgr.smithi099.hzjdah (mgr.14182) 1300 : cluster [DBG] pgmap v854: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:04.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:04 smithi142 bash[20347]: cluster 2024-01-27T23:54:02.925539+0000 mgr.smithi099.hzjdah (mgr.14182) 1300 : cluster [DBG] pgmap v854: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:05.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:05 smithi142 bash[20347]: cluster 2024-01-27T23:54:04.926994+0000 mgr.smithi099.hzjdah (mgr.14182) 1301 : cluster [DBG] pgmap v855: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:54:05.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:05 smithi099 bash[16328]: cluster 2024-01-27T23:54:04.926994+0000 mgr.smithi099.hzjdah (mgr.14182) 1301 : cluster [DBG] pgmap v855: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:54:06.674 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:06.674 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:07.285 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:08.287 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:08.299 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:07 smithi099 bash[16328]: audit 2024-01-27T23:54:06.662445+0000 mgr.smithi099.hzjdah (mgr.14182) 1302 : audit [DBG] from='client.15572 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:08.300 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:07 smithi099 bash[16328]: cluster 2024-01-27T23:54:06.928546+0000 mgr.smithi099.hzjdah (mgr.14182) 1303 : cluster [DBG] pgmap v856: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:08.305 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:07 smithi142 bash[20347]: audit 2024-01-27T23:54:06.662445+0000 mgr.smithi099.hzjdah (mgr.14182) 1302 : audit [DBG] from='client.15572 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:08.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:07 smithi142 bash[20347]: cluster 2024-01-27T23:54:06.928546+0000 mgr.smithi099.hzjdah (mgr.14182) 1303 : cluster [DBG] pgmap v856: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:10.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:10 smithi099 bash[16328]: cluster 2024-01-27T23:54:08.929842+0000 mgr.smithi099.hzjdah (mgr.14182) 1304 : cluster [DBG] pgmap v857: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:10 smithi142 bash[20347]: cluster 2024-01-27T23:54:08.929842+0000 mgr.smithi099.hzjdah (mgr.14182) 1304 : cluster [DBG] pgmap v857: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:11.483 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:11.483 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:12.084 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:12.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:12 smithi099 bash[16328]: cluster 2024-01-27T23:54:10.930710+0000 mgr.smithi099.hzjdah (mgr.14182) 1305 : cluster [DBG] pgmap v858: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:12.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:12 smithi142 bash[20347]: cluster 2024-01-27T23:54:10.930710+0000 mgr.smithi099.hzjdah (mgr.14182) 1305 : cluster [DBG] pgmap v858: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:13.085 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:13.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:13 smithi099 bash[16328]: audit 2024-01-27T23:54:11.468956+0000 mgr.smithi099.hzjdah (mgr.14182) 1306 : audit [DBG] from='client.15576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:13.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:13 smithi142 bash[20347]: audit 2024-01-27T23:54:11.468956+0000 mgr.smithi099.hzjdah (mgr.14182) 1306 : audit [DBG] from='client.15576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:14.447 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:14 smithi099 bash[16328]: cluster 2024-01-27T23:54:12.932681+0000 mgr.smithi099.hzjdah (mgr.14182) 1307 : cluster [DBG] pgmap v859: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:14.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:14 smithi142 bash[20347]: cluster 2024-01-27T23:54:12.932681+0000 mgr.smithi099.hzjdah (mgr.14182) 1307 : cluster [DBG] pgmap v859: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:16.274 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:16.275 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:16.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:16 smithi142 bash[20347]: cluster 2024-01-27T23:54:14.934276+0000 mgr.smithi099.hzjdah (mgr.14182) 1308 : cluster [DBG] pgmap v860: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:54:16.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:16 smithi099 bash[16328]: cluster 2024-01-27T23:54:14.934276+0000 mgr.smithi099.hzjdah (mgr.14182) 1308 : cluster [DBG] pgmap v860: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:54:16.926 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:17.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:17 smithi099 bash[16328]: audit 2024-01-27T23:54:16.264878+0000 mgr.smithi099.hzjdah (mgr.14182) 1309 : audit [DBG] from='client.15580 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:17.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:17 smithi099 bash[16328]: cluster 2024-01-27T23:54:16.935918+0000 mgr.smithi099.hzjdah (mgr.14182) 1310 : 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-01-27T23:54:17.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:17 smithi142 bash[20347]: audit 2024-01-27T23:54:16.264878+0000 mgr.smithi099.hzjdah (mgr.14182) 1309 : audit [DBG] from='client.15580 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:17.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:17 smithi142 bash[20347]: cluster 2024-01-27T23:54:16.935918+0000 mgr.smithi099.hzjdah (mgr.14182) 1310 : 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-01-27T23:54:17.927 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:20.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:20 smithi142 bash[20347]: cluster 2024-01-27T23:54:18.937318+0000 mgr.smithi099.hzjdah (mgr.14182) 1311 : 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-01-27T23:54:20.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:20 smithi099 bash[16328]: cluster 2024-01-27T23:54:18.937318+0000 mgr.smithi099.hzjdah (mgr.14182) 1311 : 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-01-27T23:54:21.192 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:21.193 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:21.815 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:22.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:22 smithi142 bash[20347]: cluster 2024-01-27T23:54:20.938769+0000 mgr.smithi099.hzjdah (mgr.14182) 1312 : cluster [DBG] pgmap v863: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:22.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:22 smithi099 bash[16328]: cluster 2024-01-27T23:54:20.938769+0000 mgr.smithi099.hzjdah (mgr.14182) 1312 : cluster [DBG] pgmap v863: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:22.817 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:23.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:23 smithi142 bash[20347]: audit 2024-01-27T23:54:21.181348+0000 mgr.smithi099.hzjdah (mgr.14182) 1313 : audit [DBG] from='client.15584 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:23.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:23 smithi099 bash[16328]: audit 2024-01-27T23:54:21.181348+0000 mgr.smithi099.hzjdah (mgr.14182) 1313 : audit [DBG] from='client.15584 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:24.387 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:24 smithi099 bash[16328]: cluster 2024-01-27T23:54:22.939680+0000 mgr.smithi099.hzjdah (mgr.14182) 1314 : cluster [DBG] pgmap v864: 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-01-27T23:54:24.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:24 smithi142 bash[20347]: cluster 2024-01-27T23:54:22.939680+0000 mgr.smithi099.hzjdah (mgr.14182) 1314 : cluster [DBG] pgmap v864: 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-01-27T23:54:26.166 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:26.166 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:26.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:26 smithi142 bash[20347]: cluster 2024-01-27T23:54:24.941037+0000 mgr.smithi099.hzjdah (mgr.14182) 1315 : cluster [DBG] pgmap v865: 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, 34 op/s 2024-01-27T23:54:26.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:26 smithi099 bash[16328]: cluster 2024-01-27T23:54:24.941037+0000 mgr.smithi099.hzjdah (mgr.14182) 1315 : cluster [DBG] pgmap v865: 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, 34 op/s 2024-01-27T23:54:26.828 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:27.829 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:28.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:28 smithi142 bash[20347]: audit 2024-01-27T23:54:26.157542+0000 mgr.smithi099.hzjdah (mgr.14182) 1316 : audit [DBG] from='client.15588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:28.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:28 smithi142 bash[20347]: cluster 2024-01-27T23:54:26.942194+0000 mgr.smithi099.hzjdah (mgr.14182) 1317 : cluster [DBG] pgmap v866: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 39 KiB/s rd, 0 B/s wr, 65 op/s 2024-01-27T23:54:28.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:28 smithi099 bash[16328]: audit 2024-01-27T23:54:26.157542+0000 mgr.smithi099.hzjdah (mgr.14182) 1316 : audit [DBG] from='client.15588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:28.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:28 smithi099 bash[16328]: cluster 2024-01-27T23:54:26.942194+0000 mgr.smithi099.hzjdah (mgr.14182) 1317 : cluster [DBG] pgmap v866: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 39 KiB/s rd, 0 B/s wr, 65 op/s 2024-01-27T23:54:30.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:30 smithi142 bash[20347]: cluster 2024-01-27T23:54:28.944446+0000 mgr.smithi099.hzjdah (mgr.14182) 1318 : cluster [DBG] pgmap v867: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 50 KiB/s rd, 0 B/s wr, 83 op/s 2024-01-27T23:54:30.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:30 smithi099 bash[16328]: cluster 2024-01-27T23:54:28.944446+0000 mgr.smithi099.hzjdah (mgr.14182) 1318 : cluster [DBG] pgmap v867: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 50 KiB/s rd, 0 B/s wr, 83 op/s 2024-01-27T23:54:31.101 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:31.102 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:31.790 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:32.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:32 smithi142 bash[20347]: cluster 2024-01-27T23:54:30.945801+0000 mgr.smithi099.hzjdah (mgr.14182) 1319 : cluster [DBG] pgmap v868: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 50 KiB/s rd, 0 B/s wr, 83 op/s 2024-01-27T23:54:32.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:32 smithi142 bash[20347]: audit 2024-01-27T23:54:31.094593+0000 mgr.smithi099.hzjdah (mgr.14182) 1320 : audit [DBG] from='client.15592 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:32.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:32 smithi099 bash[16328]: cluster 2024-01-27T23:54:30.945801+0000 mgr.smithi099.hzjdah (mgr.14182) 1319 : cluster [DBG] pgmap v868: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 50 KiB/s rd, 0 B/s wr, 83 op/s 2024-01-27T23:54:32.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:32 smithi099 bash[16328]: audit 2024-01-27T23:54:31.094593+0000 mgr.smithi099.hzjdah (mgr.14182) 1320 : audit [DBG] from='client.15592 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:32.791 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:34.227 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:34 smithi099 bash[16328]: cluster 2024-01-27T23:54:32.947509+0000 mgr.smithi099.hzjdah (mgr.14182) 1321 : cluster [DBG] pgmap v869: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 50 KiB/s rd, 0 B/s wr, 83 op/s 2024-01-27T23:54:34.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:34 smithi142 bash[20347]: cluster 2024-01-27T23:54:32.947509+0000 mgr.smithi099.hzjdah (mgr.14182) 1321 : cluster [DBG] pgmap v869: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 50 KiB/s rd, 0 B/s wr, 83 op/s 2024-01-27T23:54:35.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:35 smithi142 bash[20347]: audit 2024-01-27T23:54:34.906130+0000 mon.smithi099 (mon.0) 977 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:54:35.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:35 smithi099 bash[16328]: audit 2024-01-27T23:54:34.906130+0000 mon.smithi099 (mon.0) 977 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:54:36.184 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:36.184 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:52:25.808730Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.uklpwv on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:36.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:36 smithi142 bash[20347]: cluster 2024-01-27T23:54:34.948560+0000 mgr.smithi099.hzjdah (mgr.14182) 1322 : cluster [DBG] pgmap v870: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 49 KiB/s rd, 0 B/s wr, 81 op/s 2024-01-27T23:54:36.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:36 smithi142 bash[20347]: audit 2024-01-27T23:54:35.223861+0000 mon.smithi099 (mon.0) 978 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:54:36.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:36 smithi142 bash[20347]: audit 2024-01-27T23:54:35.225418+0000 mon.smithi099 (mon.0) 979 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:54:36.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:36 smithi142 bash[20347]: audit 2024-01-27T23:54:35.235106+0000 mon.smithi099 (mon.0) 980 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:54:36.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:36 smithi142 bash[20347]: audit 2024-01-27T23:54:35.244743+0000 mon.smithi099 (mon.0) 981 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:54:36.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:36 smithi142 bash[20347]: audit 2024-01-27T23:54:35.263339+0000 mon.smithi099 (mon.0) 982 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:54:36.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:36 smithi099 bash[16328]: cluster 2024-01-27T23:54:34.948560+0000 mgr.smithi099.hzjdah (mgr.14182) 1322 : cluster [DBG] pgmap v870: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 49 KiB/s rd, 0 B/s wr, 81 op/s 2024-01-27T23:54:36.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:36 smithi099 bash[16328]: audit 2024-01-27T23:54:35.223861+0000 mon.smithi099 (mon.0) 978 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:54:36.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:36 smithi099 bash[16328]: audit 2024-01-27T23:54:35.225418+0000 mon.smithi099 (mon.0) 979 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:54:36.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:36 smithi099 bash[16328]: audit 2024-01-27T23:54:35.235106+0000 mon.smithi099 (mon.0) 980 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:54:36.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:36 smithi099 bash[16328]: audit 2024-01-27T23:54:35.244743+0000 mon.smithi099 (mon.0) 981 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:54:36.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:36 smithi099 bash[16328]: audit 2024-01-27T23:54:35.263339+0000 mon.smithi099 (mon.0) 982 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:54:36.824 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:37.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:37 smithi142 bash[20347]: cluster 2024-01-27T23:54:35.236206+0000 mgr.smithi099.hzjdah (mgr.14182) 1323 : cluster [DBG] pgmap v871: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 35 KiB/s rd, 0 B/s wr, 57 op/s 2024-01-27T23:54:37.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:37 smithi142 bash[20347]: cephadm 2024-01-27T23:54:35.267653+0000 mgr.smithi099.hzjdah (mgr.14182) 1324 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.vwtawc on smithi142 2024-01-27T23:54:37.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:37 smithi142 bash[20347]: cluster 2024-01-27T23:54:36.231189+0000 mon.smithi099 (mon.0) 983 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:54:37.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:37 smithi142 bash[20347]: cluster 2024-01-27T23:54:36.231253+0000 mon.smithi099 (mon.0) 984 : cluster [INF] Cluster is now healthy 2024-01-27T23:54:37.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:37 smithi099 bash[16328]: cluster 2024-01-27T23:54:35.236206+0000 mgr.smithi099.hzjdah (mgr.14182) 1323 : cluster [DBG] pgmap v871: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 35 KiB/s rd, 0 B/s wr, 57 op/s 2024-01-27T23:54:37.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:37 smithi099 bash[16328]: cephadm 2024-01-27T23:54:35.267653+0000 mgr.smithi099.hzjdah (mgr.14182) 1324 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.vwtawc on smithi142 2024-01-27T23:54:37.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:37 smithi099 bash[16328]: cluster 2024-01-27T23:54:36.231189+0000 mon.smithi099 (mon.0) 983 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:54:37.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:37 smithi099 bash[16328]: cluster 2024-01-27T23:54:36.231253+0000 mon.smithi099 (mon.0) 984 : cluster [INF] Cluster is now healthy 2024-01-27T23:54:37.825 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:38.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:38 smithi142 bash[20347]: audit 2024-01-27T23:54:36.178030+0000 mgr.smithi099.hzjdah (mgr.14182) 1325 : audit [DBG] from='client.15596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:38.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:38 smithi142 bash[20347]: cluster 2024-01-27T23:54:37.237693+0000 mgr.smithi099.hzjdah (mgr.14182) 1326 : cluster [DBG] pgmap v872: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 13 KiB/s rd, 0 B/s wr, 21 op/s 2024-01-27T23:54:38.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:38 smithi099 bash[16328]: audit 2024-01-27T23:54:36.178030+0000 mgr.smithi099.hzjdah (mgr.14182) 1325 : audit [DBG] from='client.15596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:38.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:38 smithi099 bash[16328]: cluster 2024-01-27T23:54:37.237693+0000 mgr.smithi099.hzjdah (mgr.14182) 1326 : cluster [DBG] pgmap v872: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 13 KiB/s rd, 0 B/s wr, 21 op/s 2024-01-27T23:54:40.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:40 smithi142 bash[20347]: audit 2024-01-27T23:54:39.238761+0000 mon.smithi099 (mon.0) 985 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.vwtawc"}]: dispatch 2024-01-27T23:54:40.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:40 smithi099 bash[16328]: audit 2024-01-27T23:54:39.238761+0000 mon.smithi099 (mon.0) 985 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.vwtawc"}]: dispatch 2024-01-27T23:54:41.106 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: cephadm 2024-01-27T23:54:39.237412+0000 mgr.smithi099.hzjdah (mgr.14182) 1327 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.106 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:41.106 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.106 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.106 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:41.106 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.106 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.vwtawc ... 2024-01-27T23:54:41.106 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.106 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:41.106 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:41.107 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:41.107 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.107 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:54:41.107 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:54:41.107 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:54:41.107 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:54:41.107 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:54:41.107 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.107 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:41.288 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:41.288 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:30.543494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.sbxqho on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-sbxqho\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.sbxqho\nDeploy daemon haproxy.nfs.foo.smithi142.sbxqho ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.898240Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.xgfxer on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-xgfxer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.xgfxer\nDeploy daemon haproxy.nfs.foo.smithi099.xgfxer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:53:34.900318Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wdpygy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:41.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: cephadm 2024-01-27T23:54:39.237412+0000 mgr.smithi099.hzjdah (mgr.14182) 1327 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.vwtawc ... 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.vwtawc ... 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: cephadm 2024-01-27T23:54:39.238074+0000 mgr.smithi099.hzjdah (mgr.14182) 1328 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: cluster 2024-01-27T23:54:39.239546+0000 mgr.smithi099.hzjdah (mgr.14182) 1329 : cluster [DBG] pgmap v873: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: cephadm 2024-01-27T23:54:39.240644+0000 mgr.smithi099.hzjdah (mgr.14182) 1330 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.vwtawc ... 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:41.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:41.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:41.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: cephadm 2024-01-27T23:54:39.245917+0000 mgr.smithi099.hzjdah (mgr.14182) 1331 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.vwxfsw on smithi099 2024-01-27T23:54:41.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:41 smithi099 bash[16328]: audit 2024-01-27T23:54:40.406126+0000 mon.smithi099 (mon.0) 986 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:54:41.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.vwtawc ... 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: cephadm 2024-01-27T23:54:39.238074+0000 mgr.smithi099.hzjdah (mgr.14182) 1328 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: cluster 2024-01-27T23:54:39.239546+0000 mgr.smithi099.hzjdah (mgr.14182) 1329 : cluster [DBG] pgmap v873: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: cephadm 2024-01-27T23:54:39.240644+0000 mgr.smithi099.hzjdah (mgr.14182) 1330 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:41.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc 2024-01-27T23:54:41.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.vwtawc ... 2024-01-27T23:54:41.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:41.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:41.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:41.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:41.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: cephadm 2024-01-27T23:54:39.245917+0000 mgr.smithi099.hzjdah (mgr.14182) 1331 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.vwxfsw on smithi099 2024-01-27T23:54:41.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:41 smithi142 bash[20347]: audit 2024-01-27T23:54:40.406126+0000 mon.smithi099 (mon.0) 986 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:54:42.020 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:43.021 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:43.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:43 smithi142 bash[20347]: cluster 2024-01-27T23:54:41.240737+0000 mgr.smithi099.hzjdah (mgr.14182) 1332 : cluster [DBG] pgmap v874: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:54:43.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:43 smithi142 bash[20347]: audit 2024-01-27T23:54:41.275490+0000 mgr.smithi099.hzjdah (mgr.14182) 1333 : audit [DBG] from='client.15600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:43.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:43 smithi099 bash[16328]: cluster 2024-01-27T23:54:41.240737+0000 mgr.smithi099.hzjdah (mgr.14182) 1332 : cluster [DBG] pgmap v874: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:54:43.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:43 smithi099 bash[16328]: audit 2024-01-27T23:54:41.275490+0000 mgr.smithi099.hzjdah (mgr.14182) 1333 : audit [DBG] from='client.15600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:44.522 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:44 smithi099 bash[16328]: audit 2024-01-27T23:54:43.202231+0000 mon.smithi099 (mon.0) 987 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.vwxfsw"}]: dispatch 2024-01-27T23:54:44.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:44 smithi142 bash[20347]: audit 2024-01-27T23:54:43.202231+0000 mon.smithi099 (mon.0) 987 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.vwxfsw"}]: dispatch 2024-01-27T23:54:45.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: cephadm 2024-01-27T23:54:43.201292+0000 mgr.smithi099.hzjdah (mgr.14182) 1334 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.vwxfsw ... 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.vwxfsw ... 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:45.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: cephadm 2024-01-27T23:54:43.201637+0000 mgr.smithi099.hzjdah (mgr.14182) 1335 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: cephadm 2024-01-27T23:54:43.203608+0000 mgr.smithi099.hzjdah (mgr.14182) 1336 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.vwxfsw ... 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: cephadm 2024-01-27T23:54:43.206167+0000 mgr.smithi099.hzjdah (mgr.14182) 1337 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:54:45.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: cephadm 2024-01-27T23:54:43.207633+0000 mgr.smithi099.hzjdah (mgr.14182) 1338 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:54:45.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: cluster 2024-01-27T23:54:43.208926+0000 mgr.smithi099.hzjdah (mgr.14182) 1339 : cluster [DBG] pgmap v875: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:54:45.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: cluster 2024-01-27T23:54:44.109392+0000 mon.smithi099 (mon.0) 988 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:54:45.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:45 smithi142 bash[20347]: audit 2024-01-27T23:54:44.131442+0000 mon.smithi099 (mon.0) 989 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:54:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: cephadm 2024-01-27T23:54:43.201292+0000 mgr.smithi099.hzjdah (mgr.14182) 1334 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.vwxfsw ... 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.vwxfsw ... 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: cephadm 2024-01-27T23:54:43.201637+0000 mgr.smithi099.hzjdah (mgr.14182) 1335 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: cephadm 2024-01-27T23:54:43.203608+0000 mgr.smithi099.hzjdah (mgr.14182) 1336 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.vwxfsw ... 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: cephadm 2024-01-27T23:54:43.206167+0000 mgr.smithi099.hzjdah (mgr.14182) 1337 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: cephadm 2024-01-27T23:54:43.207633+0000 mgr.smithi099.hzjdah (mgr.14182) 1338 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: cluster 2024-01-27T23:54:43.208926+0000 mgr.smithi099.hzjdah (mgr.14182) 1339 : cluster [DBG] pgmap v875: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: cluster 2024-01-27T23:54:44.109392+0000 mon.smithi099 (mon.0) 988 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:54:45.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:45 smithi099 bash[16328]: audit 2024-01-27T23:54:44.131442+0000 mon.smithi099 (mon.0) 989 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:54:46.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:46 smithi099 bash[16328]: cluster 2024-01-27T23:54:45.210394+0000 mgr.smithi099.hzjdah (mgr.14182) 1340 : cluster [DBG] pgmap v876: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:54:46.452 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:46.453 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:46.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:46 smithi142 bash[20347]: cluster 2024-01-27T23:54:45.210394+0000 mgr.smithi099.hzjdah (mgr.14182) 1340 : cluster [DBG] pgmap v876: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:54:47.130 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:47.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:47 smithi142 bash[20347]: audit 2024-01-27T23:54:46.445677+0000 mgr.smithi099.hzjdah (mgr.14182) 1341 : audit [DBG] from='client.15604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:47.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:47 smithi099 bash[16328]: audit 2024-01-27T23:54:46.445677+0000 mgr.smithi099.hzjdah (mgr.14182) 1341 : audit [DBG] from='client.15604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:48.131 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:48.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:48 smithi142 bash[20347]: cluster 2024-01-27T23:54:47.212146+0000 mgr.smithi099.hzjdah (mgr.14182) 1342 : 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-01-27T23:54:48.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:48 smithi099 bash[16328]: cluster 2024-01-27T23:54:47.212146+0000 mgr.smithi099.hzjdah (mgr.14182) 1342 : 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-01-27T23:54:51.274 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:51.274 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:51.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:51 smithi142 bash[20347]: cluster 2024-01-27T23:54:49.213826+0000 mgr.smithi099.hzjdah (mgr.14182) 1343 : 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-01-27T23:54:51.323 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:51 smithi099 bash[16328]: cluster 2024-01-27T23:54:49.213826+0000 mgr.smithi099.hzjdah (mgr.14182) 1343 : 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-01-27T23:54:51.881 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:52.882 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:53.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:53 smithi099 bash[16328]: cluster 2024-01-27T23:54:51.215305+0000 mgr.smithi099.hzjdah (mgr.14182) 1344 : 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-01-27T23:54:53.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:53 smithi099 bash[16328]: audit 2024-01-27T23:54:51.269014+0000 mgr.smithi099.hzjdah (mgr.14182) 1345 : audit [DBG] from='client.15608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:53.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:53 smithi142 bash[20347]: cluster 2024-01-27T23:54:51.215305+0000 mgr.smithi099.hzjdah (mgr.14182) 1344 : 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-01-27T23:54:53.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:53 smithi142 bash[20347]: audit 2024-01-27T23:54:51.269014+0000 mgr.smithi099.hzjdah (mgr.14182) 1345 : audit [DBG] from='client.15608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:55.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:55 smithi142 bash[20347]: cluster 2024-01-27T23:54:53.217260+0000 mgr.smithi099.hzjdah (mgr.14182) 1346 : cluster [DBG] pgmap v880: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:55.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:55 smithi099 bash[16328]: cluster 2024-01-27T23:54:53.217260+0000 mgr.smithi099.hzjdah (mgr.14182) 1346 : cluster [DBG] pgmap v880: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:54:56.146 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:54:56.146 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:54:56.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:56 smithi099 bash[16328]: cluster 2024-01-27T23:54:55.218725+0000 mgr.smithi099.hzjdah (mgr.14182) 1347 : cluster [DBG] pgmap v881: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:54:56.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:56 smithi099 bash[16328]: audit 2024-01-27T23:54:55.405915+0000 mon.smithi099 (mon.0) 990 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:54:56.771 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:54:56.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:56 smithi142 bash[20347]: cluster 2024-01-27T23:54:55.218725+0000 mgr.smithi099.hzjdah (mgr.14182) 1347 : cluster [DBG] pgmap v881: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:54:56.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:56 smithi142 bash[20347]: audit 2024-01-27T23:54:55.405915+0000 mon.smithi099 (mon.0) 990 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:54:57.772 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:54:57.785 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:57 smithi099 bash[16328]: audit 2024-01-27T23:54:56.132785+0000 mgr.smithi099.hzjdah (mgr.14182) 1348 : audit [DBG] from='client.15612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:57.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:57 smithi142 bash[20347]: audit 2024-01-27T23:54:56.132785+0000 mgr.smithi099.hzjdah (mgr.14182) 1348 : audit [DBG] from='client.15612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:54:58.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:54:58 smithi142 bash[20347]: cluster 2024-01-27T23:54:57.220528+0000 mgr.smithi099.hzjdah (mgr.14182) 1349 : 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-01-27T23:54:58.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:54:58 smithi099 bash[16328]: cluster 2024-01-27T23:54:57.220528+0000 mgr.smithi099.hzjdah (mgr.14182) 1349 : 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-01-27T23:55:00.997 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:00.997 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:01.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:01 smithi142 bash[20347]: cluster 2024-01-27T23:54:59.222315+0000 mgr.smithi099.hzjdah (mgr.14182) 1350 : 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-01-27T23:55:01.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:01 smithi099 bash[16328]: cluster 2024-01-27T23:54:59.222315+0000 mgr.smithi099.hzjdah (mgr.14182) 1350 : 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-01-27T23:55:01.678 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:02.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:02 smithi142 bash[20347]: audit 2024-01-27T23:55:00.984848+0000 mgr.smithi099.hzjdah (mgr.14182) 1351 : audit [DBG] from='client.15616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:02.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:02 smithi099 bash[16328]: audit 2024-01-27T23:55:00.984848+0000 mgr.smithi099.hzjdah (mgr.14182) 1351 : audit [DBG] from='client.15616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:02.680 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:03.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:03 smithi142 bash[20347]: cluster 2024-01-27T23:55:01.223826+0000 mgr.smithi099.hzjdah (mgr.14182) 1352 : 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-01-27T23:55:03.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:03 smithi099 bash[16328]: cluster 2024-01-27T23:55:01.223826+0000 mgr.smithi099.hzjdah (mgr.14182) 1352 : 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-01-27T23:55:05.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:05 smithi142 bash[20347]: cluster 2024-01-27T23:55:03.225782+0000 mgr.smithi099.hzjdah (mgr.14182) 1353 : cluster [DBG] pgmap v885: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 852 B/s rd, 0 B/s wr, 1 op/s 2024-01-27T23:55:05.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:05 smithi099 bash[16328]: cluster 2024-01-27T23:55:03.225782+0000 mgr.smithi099.hzjdah (mgr.14182) 1353 : cluster [DBG] pgmap v885: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 852 B/s rd, 0 B/s wr, 1 op/s 2024-01-27T23:55:06.260 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:06.260 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:06.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:06 smithi142 bash[20347]: cluster 2024-01-27T23:55:05.227198+0000 mgr.smithi099.hzjdah (mgr.14182) 1354 : cluster [DBG] pgmap v886: 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-01-27T23:55:06.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:06 smithi099 bash[16328]: cluster 2024-01-27T23:55:05.227198+0000 mgr.smithi099.hzjdah (mgr.14182) 1354 : cluster [DBG] pgmap v886: 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-01-27T23:55:06.893 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:07.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:07 smithi099 bash[16328]: audit 2024-01-27T23:55:06.249792+0000 mgr.smithi099.hzjdah (mgr.14182) 1355 : audit [DBG] from='client.15620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:07 smithi142 bash[20347]: audit 2024-01-27T23:55:06.249792+0000 mgr.smithi099.hzjdah (mgr.14182) 1355 : audit [DBG] from='client.15620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:07.894 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:08.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:08 smithi099 bash[16328]: cluster 2024-01-27T23:55:07.228924+0000 mgr.smithi099.hzjdah (mgr.14182) 1356 : cluster [DBG] pgmap v887: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-27T23:55:08.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:08 smithi142 bash[20347]: cluster 2024-01-27T23:55:07.228924+0000 mgr.smithi099.hzjdah (mgr.14182) 1356 : cluster [DBG] pgmap v887: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-27T23:55:11.125 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:11.125 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:11.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:11 smithi142 bash[20347]: cluster 2024-01-27T23:55:09.230677+0000 mgr.smithi099.hzjdah (mgr.14182) 1357 : cluster [DBG] pgmap v888: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-27T23:55:11.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:11 smithi099 bash[16328]: cluster 2024-01-27T23:55:09.230677+0000 mgr.smithi099.hzjdah (mgr.14182) 1357 : cluster [DBG] pgmap v888: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-27T23:55:11.770 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:12.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:12 smithi142 bash[20347]: audit 2024-01-27T23:55:11.114979+0000 mgr.smithi099.hzjdah (mgr.14182) 1358 : audit [DBG] from='client.15624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:12.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:12 smithi099 bash[16328]: audit 2024-01-27T23:55:11.114979+0000 mgr.smithi099.hzjdah (mgr.14182) 1358 : audit [DBG] from='client.15624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:12.771 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:13.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:13 smithi142 bash[20347]: cluster 2024-01-27T23:55:11.232168+0000 mgr.smithi099.hzjdah (mgr.14182) 1359 : cluster [DBG] pgmap v889: 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-01-27T23:55:13.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:13 smithi099 bash[16328]: cluster 2024-01-27T23:55:11.232168+0000 mgr.smithi099.hzjdah (mgr.14182) 1359 : cluster [DBG] pgmap v889: 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-01-27T23:55:15.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:15 smithi142 bash[20347]: cluster 2024-01-27T23:55:13.234136+0000 mgr.smithi099.hzjdah (mgr.14182) 1360 : cluster [DBG] pgmap v890: 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-01-27T23:55:15.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:15 smithi099 bash[16328]: cluster 2024-01-27T23:55:13.234136+0000 mgr.smithi099.hzjdah (mgr.14182) 1360 : cluster [DBG] pgmap v890: 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-01-27T23:55:16.252 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:16.252 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:16.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:16 smithi142 bash[20347]: cluster 2024-01-27T23:55:15.235580+0000 mgr.smithi099.hzjdah (mgr.14182) 1361 : cluster [DBG] pgmap v891: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.4 KiB/s rd, 0 B/s wr, 5 op/s 2024-01-27T23:55:16.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:16 smithi099 bash[16328]: cluster 2024-01-27T23:55:15.235580+0000 mgr.smithi099.hzjdah (mgr.14182) 1361 : cluster [DBG] pgmap v891: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.4 KiB/s rd, 0 B/s wr, 5 op/s 2024-01-27T23:55:16.861 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:17.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:17 smithi142 bash[20347]: audit 2024-01-27T23:55:16.241288+0000 mgr.smithi099.hzjdah (mgr.14182) 1362 : audit [DBG] from='client.15628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:17.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:17 smithi099 bash[16328]: audit 2024-01-27T23:55:16.241288+0000 mgr.smithi099.hzjdah (mgr.14182) 1362 : audit [DBG] from='client.15628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:17.862 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:18.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:18 smithi142 bash[20347]: cluster 2024-01-27T23:55:17.237319+0000 mgr.smithi099.hzjdah (mgr.14182) 1363 : cluster [DBG] pgmap v892: 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-01-27T23:55:18.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:18 smithi099 bash[16328]: cluster 2024-01-27T23:55:17.237319+0000 mgr.smithi099.hzjdah (mgr.14182) 1363 : cluster [DBG] pgmap v892: 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-01-27T23:55:21.086 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:21.086 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:21.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:21 smithi142 bash[20347]: cluster 2024-01-27T23:55:19.238939+0000 mgr.smithi099.hzjdah (mgr.14182) 1364 : cluster [DBG] pgmap v893: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:21.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:21 smithi099 bash[16328]: cluster 2024-01-27T23:55:19.238939+0000 mgr.smithi099.hzjdah (mgr.14182) 1364 : cluster [DBG] pgmap v893: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:21.696 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:22.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:22 smithi142 bash[20347]: audit 2024-01-27T23:55:21.073648+0000 mgr.smithi099.hzjdah (mgr.14182) 1365 : audit [DBG] from='client.15632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:22.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:22 smithi099 bash[16328]: audit 2024-01-27T23:55:21.073648+0000 mgr.smithi099.hzjdah (mgr.14182) 1365 : audit [DBG] from='client.15632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:22.697 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:23.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:23 smithi142 bash[20347]: cluster 2024-01-27T23:55:21.240503+0000 mgr.smithi099.hzjdah (mgr.14182) 1366 : cluster [DBG] pgmap v894: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:23.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:23 smithi099 bash[16328]: cluster 2024-01-27T23:55:21.240503+0000 mgr.smithi099.hzjdah (mgr.14182) 1366 : cluster [DBG] pgmap v894: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:25.489 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:25 smithi099 bash[16328]: cluster 2024-01-27T23:55:23.242496+0000 mgr.smithi099.hzjdah (mgr.14182) 1367 : cluster [DBG] pgmap v895: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:25.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:25 smithi142 bash[20347]: cluster 2024-01-27T23:55:23.242496+0000 mgr.smithi099.hzjdah (mgr.14182) 1367 : cluster [DBG] pgmap v895: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:25.929 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:25.929 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:26.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:26 smithi099 bash[16328]: cluster 2024-01-27T23:55:25.243924+0000 mgr.smithi099.hzjdah (mgr.14182) 1368 : cluster [DBG] pgmap v896: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:55:26.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:26 smithi099 bash[16328]: audit 2024-01-27T23:55:25.919526+0000 mgr.smithi099.hzjdah (mgr.14182) 1369 : audit [DBG] from='client.15636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:26.555 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:26.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:26 smithi142 bash[20347]: cluster 2024-01-27T23:55:25.243924+0000 mgr.smithi099.hzjdah (mgr.14182) 1368 : cluster [DBG] pgmap v896: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:55:26.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:26 smithi142 bash[20347]: audit 2024-01-27T23:55:25.919526+0000 mgr.smithi099.hzjdah (mgr.14182) 1369 : audit [DBG] from='client.15636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:27.557 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:28.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:28 smithi142 bash[20347]: cluster 2024-01-27T23:55:27.245673+0000 mgr.smithi099.hzjdah (mgr.14182) 1370 : cluster [DBG] pgmap v897: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:28.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:28 smithi099 bash[16328]: cluster 2024-01-27T23:55:27.245673+0000 mgr.smithi099.hzjdah (mgr.14182) 1370 : cluster [DBG] pgmap v897: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:30.805 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:30.805 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:31.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:31 smithi099 bash[16328]: cluster 2024-01-27T23:55:29.247337+0000 mgr.smithi099.hzjdah (mgr.14182) 1371 : cluster [DBG] pgmap v898: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:31.442 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:31.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:31 smithi142 bash[20347]: cluster 2024-01-27T23:55:29.247337+0000 mgr.smithi099.hzjdah (mgr.14182) 1371 : cluster [DBG] pgmap v898: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:32.443 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:32.456 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:32 smithi099 bash[16328]: audit 2024-01-27T23:55:30.793951+0000 mgr.smithi099.hzjdah (mgr.14182) 1372 : audit [DBG] from='client.15640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:32.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:32 smithi142 bash[20347]: audit 2024-01-27T23:55:30.793951+0000 mgr.smithi099.hzjdah (mgr.14182) 1372 : audit [DBG] from='client.15640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:33.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:33 smithi142 bash[20347]: cluster 2024-01-27T23:55:31.248824+0000 mgr.smithi099.hzjdah (mgr.14182) 1373 : cluster [DBG] pgmap v899: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:33.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:33 smithi099 bash[16328]: cluster 2024-01-27T23:55:31.248824+0000 mgr.smithi099.hzjdah (mgr.14182) 1373 : cluster [DBG] pgmap v899: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:35.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:35 smithi142 bash[20347]: cluster 2024-01-27T23:55:33.250784+0000 mgr.smithi099.hzjdah (mgr.14182) 1374 : cluster [DBG] pgmap v900: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:35.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:35 smithi099 bash[16328]: cluster 2024-01-27T23:55:33.250784+0000 mgr.smithi099.hzjdah (mgr.14182) 1374 : cluster [DBG] pgmap v900: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:35.638 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:35.639 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:36.335 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:37.336 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:37.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:37 smithi142 bash[20347]: cluster 2024-01-27T23:55:35.251952+0000 mgr.smithi099.hzjdah (mgr.14182) 1375 : cluster [DBG] pgmap v901: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:55:37.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:37 smithi142 bash[20347]: audit 2024-01-27T23:55:35.628505+0000 mgr.smithi099.hzjdah (mgr.14182) 1376 : audit [DBG] from='client.15644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:37.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:37 smithi099 bash[16328]: cluster 2024-01-27T23:55:35.251952+0000 mgr.smithi099.hzjdah (mgr.14182) 1375 : cluster [DBG] pgmap v901: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:55:37.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:37 smithi099 bash[16328]: audit 2024-01-27T23:55:35.628505+0000 mgr.smithi099.hzjdah (mgr.14182) 1376 : audit [DBG] from='client.15644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:39.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:39 smithi142 bash[20347]: cluster 2024-01-27T23:55:37.253691+0000 mgr.smithi099.hzjdah (mgr.14182) 1377 : cluster [DBG] pgmap v902: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:39 smithi099 bash[16328]: cluster 2024-01-27T23:55:37.253691+0000 mgr.smithi099.hzjdah (mgr.14182) 1377 : cluster [DBG] pgmap v902: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:40.715 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:40.716 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:41.331 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:41.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:41 smithi142 bash[20347]: cluster 2024-01-27T23:55:39.255230+0000 mgr.smithi099.hzjdah (mgr.14182) 1378 : cluster [DBG] pgmap v903: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:41.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:41 smithi099 bash[16328]: cluster 2024-01-27T23:55:39.255230+0000 mgr.smithi099.hzjdah (mgr.14182) 1378 : cluster [DBG] pgmap v903: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:42.333 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:42.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:42 smithi142 bash[20347]: audit 2024-01-27T23:55:40.710309+0000 mgr.smithi099.hzjdah (mgr.14182) 1379 : audit [DBG] from='client.15648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:42.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:42 smithi142 bash[20347]: cluster 2024-01-27T23:55:41.256711+0000 mgr.smithi099.hzjdah (mgr.14182) 1380 : cluster [DBG] pgmap v904: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:42.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:42 smithi099 bash[16328]: audit 2024-01-27T23:55:40.710309+0000 mgr.smithi099.hzjdah (mgr.14182) 1379 : audit [DBG] from='client.15648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:42.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:42 smithi099 bash[16328]: cluster 2024-01-27T23:55:41.256711+0000 mgr.smithi099.hzjdah (mgr.14182) 1380 : cluster [DBG] pgmap v904: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:43.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:43 smithi142 bash[20347]: audit 2024-01-27T23:55:43.210873+0000 mon.smithi099 (mon.0) 991 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:55:43.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:43 smithi099 bash[16328]: audit 2024-01-27T23:55:43.210873+0000 mon.smithi099 (mon.0) 991 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:55:44.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:44 smithi099 bash[16328]: cluster 2024-01-27T23:55:43.258418+0000 mgr.smithi099.hzjdah (mgr.14182) 1381 : cluster [DBG] pgmap v905: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:44.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:44 smithi099 bash[16328]: audit 2024-01-27T23:55:43.536195+0000 mon.smithi099 (mon.0) 992 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:55:44.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:44 smithi099 bash[16328]: audit 2024-01-27T23:55:43.537903+0000 mon.smithi099 (mon.0) 993 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:55:44.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:44 smithi099 bash[16328]: audit 2024-01-27T23:55:43.547098+0000 mon.smithi099 (mon.0) 994 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:55:44.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:44 smithi099 bash[16328]: cluster 2024-01-27T23:55:43.548371+0000 mgr.smithi099.hzjdah (mgr.14182) 1382 : cluster [DBG] pgmap v906: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:55:44.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:44 smithi099 bash[16328]: audit 2024-01-27T23:55:43.555924+0000 mon.smithi099 (mon.0) 995 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:55:44.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:44 smithi099 bash[16328]: audit 2024-01-27T23:55:43.569326+0000 mon.smithi099 (mon.0) 996 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:55:44.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:44 smithi099 bash[16328]: cephadm 2024-01-27T23:55:43.572988+0000 mgr.smithi099.hzjdah (mgr.14182) 1383 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.aszbzk on smithi142 2024-01-27T23:55:44.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:44 smithi142 bash[20347]: cluster 2024-01-27T23:55:43.258418+0000 mgr.smithi099.hzjdah (mgr.14182) 1381 : cluster [DBG] pgmap v905: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:44.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:44 smithi142 bash[20347]: audit 2024-01-27T23:55:43.536195+0000 mon.smithi099 (mon.0) 992 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:55:44.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:44 smithi142 bash[20347]: audit 2024-01-27T23:55:43.537903+0000 mon.smithi099 (mon.0) 993 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:55:44.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:44 smithi142 bash[20347]: audit 2024-01-27T23:55:43.547098+0000 mon.smithi099 (mon.0) 994 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:55:44.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:44 smithi142 bash[20347]: cluster 2024-01-27T23:55:43.548371+0000 mgr.smithi099.hzjdah (mgr.14182) 1382 : cluster [DBG] pgmap v906: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:55:44.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:44 smithi142 bash[20347]: audit 2024-01-27T23:55:43.555924+0000 mon.smithi099 (mon.0) 995 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:55:44.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:44 smithi142 bash[20347]: audit 2024-01-27T23:55:43.569326+0000 mon.smithi099 (mon.0) 996 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:55:44.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:44 smithi142 bash[20347]: cephadm 2024-01-27T23:55:43.572988+0000 mgr.smithi099.hzjdah (mgr.14182) 1383 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.aszbzk on smithi142 2024-01-27T23:55:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:45 smithi099 bash[16328]: cluster 2024-01-27T23:55:44.544895+0000 mon.smithi099 (mon.0) 997 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:55:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:45 smithi099 bash[16328]: cluster 2024-01-27T23:55:44.544953+0000 mon.smithi099 (mon.0) 998 : cluster [INF] Cluster is now healthy 2024-01-27T23:55:45.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:45 smithi142 bash[20347]: cluster 2024-01-27T23:55:44.544895+0000 mon.smithi099 (mon.0) 997 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:55:45.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:45 smithi142 bash[20347]: cluster 2024-01-27T23:55:44.544953+0000 mon.smithi099 (mon.0) 998 : cluster [INF] Cluster is now healthy 2024-01-27T23:55:45.931 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:45.931 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:53:34.902125Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.tjdcza on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:46.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:46 smithi099 bash[16328]: cluster 2024-01-27T23:55:45.549258+0000 mgr.smithi099.hzjdah (mgr.14182) 1384 : cluster [DBG] pgmap v907: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:55:46.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:46 smithi099 bash[16328]: audit 2024-01-27T23:55:45.919525+0000 mgr.smithi099.hzjdah (mgr.14182) 1385 : audit [DBG] from='client.15652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:46.638 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:46.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:46 smithi142 bash[20347]: cluster 2024-01-27T23:55:45.549258+0000 mgr.smithi099.hzjdah (mgr.14182) 1384 : cluster [DBG] pgmap v907: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:55:46.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:46 smithi142 bash[20347]: audit 2024-01-27T23:55:45.919525+0000 mgr.smithi099.hzjdah (mgr.14182) 1385 : audit [DBG] from='client.15652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:47.639 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:47.648 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:47 smithi099 bash[16328]: audit 2024-01-27T23:55:47.393424+0000 mon.smithi099 (mon.0) 999 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.aszbzk"}]: dispatch 2024-01-27T23:55:47.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:47 smithi142 bash[20347]: audit 2024-01-27T23:55:47.393424+0000 mon.smithi099 (mon.0) 999 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.aszbzk"}]: dispatch 2024-01-27T23:55:48.759 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: cephadm 2024-01-27T23:55:47.392351+0000 mgr.smithi099.hzjdah (mgr.14182) 1386 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.759 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:48.759 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.759 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.759 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:48.759 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.759 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.aszbzk ... 2024-01-27T23:55:48.759 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.759 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.760 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.aszbzk ... 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: cephadm 2024-01-27T23:55:47.392775+0000 mgr.smithi099.hzjdah (mgr.14182) 1387 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: cephadm 2024-01-27T23:55:47.395312+0000 mgr.smithi099.hzjdah (mgr.14182) 1388 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.761 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:48.762 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.762 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.aszbzk ... 2024-01-27T23:55:48.762 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.762 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:48.762 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:48.762 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:48.762 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.762 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: cephadm 2024-01-27T23:55:47.400220+0000 mgr.smithi099.hzjdah (mgr.14182) 1389 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.ablumo on smithi099 2024-01-27T23:55:48.762 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:48 smithi099 bash[16328]: cluster 2024-01-27T23:55:47.550969+0000 mgr.smithi099.hzjdah (mgr.14182) 1390 : cluster [DBG] pgmap v908: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: cephadm 2024-01-27T23:55:47.392351+0000 mgr.smithi099.hzjdah (mgr.14182) 1386 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.aszbzk ... 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:48.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.aszbzk ... 2024-01-27T23:55:48.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: cephadm 2024-01-27T23:55:47.392775+0000 mgr.smithi099.hzjdah (mgr.14182) 1387 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: cephadm 2024-01-27T23:55:47.395312+0000 mgr.smithi099.hzjdah (mgr.14182) 1388 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.aszbzk ... 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:48.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:48.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:48.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:48.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: cephadm 2024-01-27T23:55:47.400220+0000 mgr.smithi099.hzjdah (mgr.14182) 1389 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.ablumo on smithi099 2024-01-27T23:55:48.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:48 smithi142 bash[20347]: cluster 2024-01-27T23:55:47.550969+0000 mgr.smithi099.hzjdah (mgr.14182) 1390 : cluster [DBG] pgmap v908: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:55:50.783 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:50.783 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:39.240300Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vwtawc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-vwtawc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.vwtawc\nDeploy daemon haproxy.nfs.foo.smithi142.vwtawc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.203463Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.vwxfsw on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-vwxfsw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.vwxfsw\nDeploy daemon haproxy.nfs.foo.smithi099.vwxfsw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:54:43.206081Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.umgxoq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:51.412 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:51 smithi099 bash[16328]: cluster 2024-01-27T23:55:49.552179+0000 mgr.smithi099.hzjdah (mgr.14182) 1391 : cluster [DBG] pgmap v909: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:55:51.540 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:51.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:51 smithi142 bash[20347]: cluster 2024-01-27T23:55:49.552179+0000 mgr.smithi099.hzjdah (mgr.14182) 1391 : cluster [DBG] pgmap v909: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:55:52.541 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:52.554 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:52 smithi099 bash[16328]: audit 2024-01-27T23:55:50.770167+0000 mgr.smithi099.hzjdah (mgr.14182) 1392 : audit [DBG] from='client.15656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:52.554 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:52 smithi099 bash[16328]: audit 2024-01-27T23:55:51.487962+0000 mon.smithi099 (mon.0) 1000 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.ablumo"}]: dispatch 2024-01-27T23:55:52.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:52 smithi142 bash[20347]: audit 2024-01-27T23:55:50.770167+0000 mgr.smithi099.hzjdah (mgr.14182) 1392 : audit [DBG] from='client.15656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:52.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:52 smithi142 bash[20347]: audit 2024-01-27T23:55:51.487962+0000 mon.smithi099 (mon.0) 1000 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.ablumo"}]: dispatch 2024-01-27T23:55:53.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: cephadm 2024-01-27T23:55:51.487231+0000 mgr.smithi099.hzjdah (mgr.14182) 1393 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.ablumo ... 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:55:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.ablumo ... 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:53.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: cephadm 2024-01-27T23:55:51.487487+0000 mgr.smithi099.hzjdah (mgr.14182) 1394 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: cephadm 2024-01-27T23:55:51.489029+0000 mgr.smithi099.hzjdah (mgr.14182) 1395 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.ablumo ... 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: cephadm 2024-01-27T23:55:51.490966+0000 mgr.smithi099.hzjdah (mgr.14182) 1396 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:55:53.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: cephadm 2024-01-27T23:55:51.492520+0000 mgr.smithi099.hzjdah (mgr.14182) 1397 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:55:53.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: cluster 2024-01-27T23:55:51.494160+0000 mgr.smithi099.hzjdah (mgr.14182) 1398 : cluster [DBG] pgmap v910: 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-01-27T23:55:53.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:53 smithi142 bash[20347]: cluster 2024-01-27T23:55:52.113149+0000 mon.smithi099 (mon.0) 1001 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:55:53.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: cephadm 2024-01-27T23:55:51.487231+0000 mgr.smithi099.hzjdah (mgr.14182) 1393 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.ablumo ... 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.ablumo ... 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.586 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: cephadm 2024-01-27T23:55:51.487487+0000 mgr.smithi099.hzjdah (mgr.14182) 1394 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: cephadm 2024-01-27T23:55:51.489029+0000 mgr.smithi099.hzjdah (mgr.14182) 1395 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.ablumo ... 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:55:53.587 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:55:53.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:55:53.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:55:53.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: cephadm 2024-01-27T23:55:51.490966+0000 mgr.smithi099.hzjdah (mgr.14182) 1396 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:55:53.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: cephadm 2024-01-27T23:55:51.492520+0000 mgr.smithi099.hzjdah (mgr.14182) 1397 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:55:53.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: cluster 2024-01-27T23:55:51.494160+0000 mgr.smithi099.hzjdah (mgr.14182) 1398 : cluster [DBG] pgmap v910: 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-01-27T23:55:53.588 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:53 smithi099 bash[16328]: cluster 2024-01-27T23:55:52.113149+0000 mon.smithi099 (mon.0) 1001 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:55:55.466 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:55 smithi099 bash[16328]: cluster 2024-01-27T23:55:53.496105+0000 mgr.smithi099.hzjdah (mgr.14182) 1399 : cluster [DBG] pgmap v911: 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-01-27T23:55:55.466 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:55 smithi099 bash[16328]: audit 2024-01-27T23:55:54.188808+0000 mon.smithi099 (mon.0) 1002 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:55:55.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:55 smithi142 bash[20347]: cluster 2024-01-27T23:55:53.496105+0000 mgr.smithi099.hzjdah (mgr.14182) 1399 : cluster [DBG] pgmap v911: 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-01-27T23:55:55.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:55 smithi142 bash[20347]: audit 2024-01-27T23:55:54.188808+0000 mon.smithi099 (mon.0) 1002 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:55:55.870 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:55:55.870 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:55:56.539 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:55:57.540 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:55:57.553 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:57 smithi099 bash[16328]: cluster 2024-01-27T23:55:55.497989+0000 mgr.smithi099.hzjdah (mgr.14182) 1400 : cluster [DBG] pgmap v912: 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-01-27T23:55:57.553 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:57 smithi099 bash[16328]: audit 2024-01-27T23:55:55.865209+0000 mgr.smithi099.hzjdah (mgr.14182) 1401 : audit [DBG] from='client.15660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:57.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:57 smithi142 bash[20347]: cluster 2024-01-27T23:55:55.497989+0000 mgr.smithi099.hzjdah (mgr.14182) 1400 : cluster [DBG] pgmap v912: 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-01-27T23:55:57.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:57 smithi142 bash[20347]: audit 2024-01-27T23:55:55.865209+0000 mgr.smithi099.hzjdah (mgr.14182) 1401 : audit [DBG] from='client.15660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:55:59.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:55:59 smithi099 bash[16328]: cluster 2024-01-27T23:55:57.499903+0000 mgr.smithi099.hzjdah (mgr.14182) 1402 : cluster [DBG] pgmap v913: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:55:59.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:55:59 smithi142 bash[20347]: cluster 2024-01-27T23:55:57.499903+0000 mgr.smithi099.hzjdah (mgr.14182) 1402 : cluster [DBG] pgmap v913: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:00.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:00 smithi142 bash[20347]: cluster 2024-01-27T23:55:59.501147+0000 mgr.smithi099.hzjdah (mgr.14182) 1403 : cluster [DBG] pgmap v914: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:00.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:00 smithi099 bash[16328]: cluster 2024-01-27T23:55:59.501147+0000 mgr.smithi099.hzjdah (mgr.14182) 1403 : cluster [DBG] pgmap v914: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:00.720 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:00.720 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:01.381 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:01.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:01 smithi142 bash[20347]: audit 2024-01-27T23:56:00.712908+0000 mgr.smithi099.hzjdah (mgr.14182) 1404 : audit [DBG] from='client.15664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:01.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:01 smithi099 bash[16328]: audit 2024-01-27T23:56:00.712908+0000 mgr.smithi099.hzjdah (mgr.14182) 1404 : audit [DBG] from='client.15664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:02.383 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:02.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:02 smithi142 bash[20347]: cluster 2024-01-27T23:56:01.502762+0000 mgr.smithi099.hzjdah (mgr.14182) 1405 : cluster [DBG] pgmap v915: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:02.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:02 smithi099 bash[16328]: cluster 2024-01-27T23:56:01.502762+0000 mgr.smithi099.hzjdah (mgr.14182) 1405 : cluster [DBG] pgmap v915: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:05.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:05 smithi142 bash[20347]: cluster 2024-01-27T23:56:03.504740+0000 mgr.smithi099.hzjdah (mgr.14182) 1406 : cluster [DBG] pgmap v916: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:05.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:05 smithi099 bash[16328]: cluster 2024-01-27T23:56:03.504740+0000 mgr.smithi099.hzjdah (mgr.14182) 1406 : cluster [DBG] pgmap v916: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:05.617 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:05.617 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:06.253 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:07.253 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:07 smithi142 bash[20347]: cluster 2024-01-27T23:56:05.506198+0000 mgr.smithi099.hzjdah (mgr.14182) 1407 : cluster [DBG] pgmap v917: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:56:07.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:07 smithi142 bash[20347]: audit 2024-01-27T23:56:05.607249+0000 mgr.smithi099.hzjdah (mgr.14182) 1408 : audit [DBG] from='client.15668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:07.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:07 smithi099 bash[16328]: cluster 2024-01-27T23:56:05.506198+0000 mgr.smithi099.hzjdah (mgr.14182) 1407 : cluster [DBG] pgmap v917: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:56:07.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:07 smithi099 bash[16328]: audit 2024-01-27T23:56:05.607249+0000 mgr.smithi099.hzjdah (mgr.14182) 1408 : audit [DBG] from='client.15668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:09.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:09 smithi142 bash[20347]: cluster 2024-01-27T23:56:07.508056+0000 mgr.smithi099.hzjdah (mgr.14182) 1409 : cluster [DBG] pgmap v918: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:09.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:09 smithi099 bash[16328]: cluster 2024-01-27T23:56:07.508056+0000 mgr.smithi099.hzjdah (mgr.14182) 1409 : cluster [DBG] pgmap v918: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:10 smithi142 bash[20347]: cluster 2024-01-27T23:56:09.509613+0000 mgr.smithi099.hzjdah (mgr.14182) 1410 : cluster [DBG] pgmap v919: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:10.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:10 smithi099 bash[16328]: cluster 2024-01-27T23:56:09.509613+0000 mgr.smithi099.hzjdah (mgr.14182) 1410 : cluster [DBG] pgmap v919: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:10.731 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:10.731 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:11.345 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:11.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:11 smithi142 bash[20347]: audit 2024-01-27T23:56:10.719529+0000 mgr.smithi099.hzjdah (mgr.14182) 1411 : audit [DBG] from='client.15672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:11.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:11 smithi099 bash[16328]: audit 2024-01-27T23:56:10.719529+0000 mgr.smithi099.hzjdah (mgr.14182) 1411 : audit [DBG] from='client.15672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:12.346 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:12.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:12 smithi142 bash[20347]: cluster 2024-01-27T23:56:11.511109+0000 mgr.smithi099.hzjdah (mgr.14182) 1412 : cluster [DBG] pgmap v920: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:12.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:12 smithi099 bash[16328]: cluster 2024-01-27T23:56:11.511109+0000 mgr.smithi099.hzjdah (mgr.14182) 1412 : cluster [DBG] pgmap v920: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:15.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:15 smithi142 bash[20347]: cluster 2024-01-27T23:56:13.513200+0000 mgr.smithi099.hzjdah (mgr.14182) 1413 : cluster [DBG] pgmap v921: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:15.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:15 smithi099 bash[16328]: cluster 2024-01-27T23:56:13.513200+0000 mgr.smithi099.hzjdah (mgr.14182) 1413 : cluster [DBG] pgmap v921: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:15.642 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:15.642 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:16.303 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:17.303 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:17.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:17 smithi142 bash[20347]: cluster 2024-01-27T23:56:15.514697+0000 mgr.smithi099.hzjdah (mgr.14182) 1414 : 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-01-27T23:56:17.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:17 smithi142 bash[20347]: audit 2024-01-27T23:56:15.628903+0000 mgr.smithi099.hzjdah (mgr.14182) 1415 : audit [DBG] from='client.15676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:17.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:17 smithi099 bash[16328]: cluster 2024-01-27T23:56:15.514697+0000 mgr.smithi099.hzjdah (mgr.14182) 1414 : 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-01-27T23:56:17.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:17 smithi099 bash[16328]: audit 2024-01-27T23:56:15.628903+0000 mgr.smithi099.hzjdah (mgr.14182) 1415 : audit [DBG] from='client.15676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:19 smithi142 bash[20347]: cluster 2024-01-27T23:56:17.516617+0000 mgr.smithi099.hzjdah (mgr.14182) 1416 : 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-01-27T23:56:19.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:19 smithi099 bash[16328]: cluster 2024-01-27T23:56:17.516617+0000 mgr.smithi099.hzjdah (mgr.14182) 1416 : 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-01-27T23:56:20.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:20 smithi142 bash[20347]: cluster 2024-01-27T23:56:19.518078+0000 mgr.smithi099.hzjdah (mgr.14182) 1417 : 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-01-27T23:56:20.561 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:20.561 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:20.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:20 smithi099 bash[16328]: cluster 2024-01-27T23:56:19.518078+0000 mgr.smithi099.hzjdah (mgr.14182) 1417 : 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-01-27T23:56:21.202 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:21.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:21 smithi142 bash[20347]: audit 2024-01-27T23:56:20.548039+0000 mgr.smithi099.hzjdah (mgr.14182) 1418 : audit [DBG] from='client.15680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:21.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:21 smithi099 bash[16328]: audit 2024-01-27T23:56:20.548039+0000 mgr.smithi099.hzjdah (mgr.14182) 1418 : audit [DBG] from='client.15680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:22.203 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:22.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:22 smithi142 bash[20347]: cluster 2024-01-27T23:56:21.519556+0000 mgr.smithi099.hzjdah (mgr.14182) 1419 : 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-01-27T23:56:22.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:22 smithi099 bash[16328]: cluster 2024-01-27T23:56:21.519556+0000 mgr.smithi099.hzjdah (mgr.14182) 1419 : 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-01-27T23:56:25.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:25 smithi099 bash[16328]: cluster 2024-01-27T23:56:23.521655+0000 mgr.smithi099.hzjdah (mgr.14182) 1420 : 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-01-27T23:56:25.468 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:25.469 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:25.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:25 smithi142 bash[20347]: cluster 2024-01-27T23:56:23.521655+0000 mgr.smithi099.hzjdah (mgr.14182) 1420 : 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-01-27T23:56:26.062 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:27.064 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:27 smithi099 bash[16328]: audit 2024-01-27T23:56:25.455752+0000 mgr.smithi099.hzjdah (mgr.14182) 1421 : audit [DBG] from='client.15684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:27.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:27 smithi099 bash[16328]: cluster 2024-01-27T23:56:25.522507+0000 mgr.smithi099.hzjdah (mgr.14182) 1422 : 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-01-27T23:56:27.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:27 smithi142 bash[20347]: audit 2024-01-27T23:56:25.455752+0000 mgr.smithi099.hzjdah (mgr.14182) 1421 : audit [DBG] from='client.15684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:27.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:27 smithi142 bash[20347]: cluster 2024-01-27T23:56:25.522507+0000 mgr.smithi099.hzjdah (mgr.14182) 1422 : 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-01-27T23:56:29.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:29 smithi142 bash[20347]: cluster 2024-01-27T23:56:27.524406+0000 mgr.smithi099.hzjdah (mgr.14182) 1423 : 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-01-27T23:56:29.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:29 smithi099 bash[16328]: cluster 2024-01-27T23:56:27.524406+0000 mgr.smithi099.hzjdah (mgr.14182) 1423 : 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-01-27T23:56:30.353 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:30.353 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:30.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:30 smithi142 bash[20347]: cluster 2024-01-27T23:56:29.525869+0000 mgr.smithi099.hzjdah (mgr.14182) 1424 : 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-01-27T23:56:30.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:30 smithi099 bash[16328]: cluster 2024-01-27T23:56:29.525869+0000 mgr.smithi099.hzjdah (mgr.14182) 1424 : 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-01-27T23:56:31.001 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:31.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:31 smithi099 bash[16328]: audit 2024-01-27T23:56:30.347274+0000 mgr.smithi099.hzjdah (mgr.14182) 1425 : audit [DBG] from='client.15688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:31.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:31 smithi142 bash[20347]: audit 2024-01-27T23:56:30.347274+0000 mgr.smithi099.hzjdah (mgr.14182) 1425 : audit [DBG] from='client.15688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:32.002 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:32.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:32 smithi099 bash[16328]: cluster 2024-01-27T23:56:31.527357+0000 mgr.smithi099.hzjdah (mgr.14182) 1426 : 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-01-27T23:56:32.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:32 smithi142 bash[20347]: cluster 2024-01-27T23:56:31.527357+0000 mgr.smithi099.hzjdah (mgr.14182) 1426 : 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-01-27T23:56:35.268 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:35.268 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:35.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:35 smithi142 bash[20347]: cluster 2024-01-27T23:56:33.529279+0000 mgr.smithi099.hzjdah (mgr.14182) 1427 : 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-01-27T23:56:35.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:35 smithi099 bash[16328]: cluster 2024-01-27T23:56:33.529279+0000 mgr.smithi099.hzjdah (mgr.14182) 1427 : 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-01-27T23:56:35.952 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:36.953 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:37.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:37 smithi099 bash[16328]: audit 2024-01-27T23:56:35.257124+0000 mgr.smithi099.hzjdah (mgr.14182) 1428 : audit [DBG] from='client.15692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:37.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:37 smithi099 bash[16328]: cluster 2024-01-27T23:56:35.530774+0000 mgr.smithi099.hzjdah (mgr.14182) 1429 : 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-01-27T23:56:37.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:37 smithi142 bash[20347]: audit 2024-01-27T23:56:35.257124+0000 mgr.smithi099.hzjdah (mgr.14182) 1428 : audit [DBG] from='client.15692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:37.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:37 smithi142 bash[20347]: cluster 2024-01-27T23:56:35.530774+0000 mgr.smithi099.hzjdah (mgr.14182) 1429 : 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-01-27T23:56:39.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:39 smithi142 bash[20347]: cluster 2024-01-27T23:56:37.532763+0000 mgr.smithi099.hzjdah (mgr.14182) 1430 : 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-01-27T23:56:39.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:39 smithi099 bash[16328]: cluster 2024-01-27T23:56:37.532763+0000 mgr.smithi099.hzjdah (mgr.14182) 1430 : 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-01-27T23:56:40.260 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:40.260 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:40.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:40 smithi142 bash[20347]: cluster 2024-01-27T23:56:39.534413+0000 mgr.smithi099.hzjdah (mgr.14182) 1431 : cluster [DBG] pgmap v934: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:40.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:40 smithi099 bash[16328]: cluster 2024-01-27T23:56:39.534413+0000 mgr.smithi099.hzjdah (mgr.14182) 1431 : cluster [DBG] pgmap v934: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:40.942 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:41.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:41 smithi099 bash[16328]: audit 2024-01-27T23:56:40.250012+0000 mgr.smithi099.hzjdah (mgr.14182) 1432 : audit [DBG] from='client.15696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:41.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:41 smithi142 bash[20347]: audit 2024-01-27T23:56:40.250012+0000 mgr.smithi099.hzjdah (mgr.14182) 1432 : audit [DBG] from='client.15696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:41.942 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:42.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:42 smithi099 bash[16328]: cluster 2024-01-27T23:56:41.535925+0000 mgr.smithi099.hzjdah (mgr.14182) 1433 : cluster [DBG] pgmap v935: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:42.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:42 smithi142 bash[20347]: cluster 2024-01-27T23:56:41.535925+0000 mgr.smithi099.hzjdah (mgr.14182) 1433 : cluster [DBG] pgmap v935: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:45.187 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:45.187 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:45.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:45 smithi142 bash[20347]: cluster 2024-01-27T23:56:43.537999+0000 mgr.smithi099.hzjdah (mgr.14182) 1434 : cluster [DBG] pgmap v936: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:45 smithi099 bash[16328]: cluster 2024-01-27T23:56:43.537999+0000 mgr.smithi099.hzjdah (mgr.14182) 1434 : cluster [DBG] pgmap v936: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:45.812 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:46.813 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:47.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:47 smithi142 bash[20347]: audit 2024-01-27T23:56:45.176983+0000 mgr.smithi099.hzjdah (mgr.14182) 1435 : audit [DBG] from='client.15700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:47.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:47 smithi142 bash[20347]: cluster 2024-01-27T23:56:45.539248+0000 mgr.smithi099.hzjdah (mgr.14182) 1436 : cluster [DBG] pgmap v937: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:56:47.613 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:47 smithi099 bash[16328]: audit 2024-01-27T23:56:45.176983+0000 mgr.smithi099.hzjdah (mgr.14182) 1435 : audit [DBG] from='client.15700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:47.613 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:47 smithi099 bash[16328]: cluster 2024-01-27T23:56:45.539248+0000 mgr.smithi099.hzjdah (mgr.14182) 1436 : cluster [DBG] pgmap v937: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:56:49.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:49 smithi142 bash[20347]: cluster 2024-01-27T23:56:47.541109+0000 mgr.smithi099.hzjdah (mgr.14182) 1437 : cluster [DBG] pgmap v938: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:49.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:49 smithi099 bash[16328]: cluster 2024-01-27T23:56:47.541109+0000 mgr.smithi099.hzjdah (mgr.14182) 1437 : cluster [DBG] pgmap v938: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:50.215 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:50.215 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:50.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:50 smithi142 bash[20347]: cluster 2024-01-27T23:56:49.542543+0000 mgr.smithi099.hzjdah (mgr.14182) 1438 : cluster [DBG] pgmap v939: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:50.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:50 smithi099 bash[16328]: cluster 2024-01-27T23:56:49.542543+0000 mgr.smithi099.hzjdah (mgr.14182) 1438 : cluster [DBG] pgmap v939: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:50.882 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:51.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:51 smithi142 bash[20347]: audit 2024-01-27T23:56:50.202088+0000 mgr.smithi099.hzjdah (mgr.14182) 1439 : audit [DBG] from='client.15704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:51.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:51 smithi099 bash[16328]: audit 2024-01-27T23:56:50.202088+0000 mgr.smithi099.hzjdah (mgr.14182) 1439 : audit [DBG] from='client.15704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:51.883 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:52.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:52 smithi142 bash[20347]: audit 2024-01-27T23:56:51.495913+0000 mon.smithi099 (mon.0) 1003 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:56:52.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:52 smithi142 bash[20347]: cluster 2024-01-27T23:56:51.544052+0000 mgr.smithi099.hzjdah (mgr.14182) 1440 : cluster [DBG] pgmap v940: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:52.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:52 smithi099 bash[16328]: audit 2024-01-27T23:56:51.495913+0000 mon.smithi099 (mon.0) 1003 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:56:52.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:52 smithi099 bash[16328]: cluster 2024-01-27T23:56:51.544052+0000 mgr.smithi099.hzjdah (mgr.14182) 1440 : cluster [DBG] pgmap v940: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:55.232 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:56:55.232 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:46:30.185842Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:46:30.185944Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:46:30.186043Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:46:30.185732Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:46:30.185546Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:46:30.186759Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:46:30.186142Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:46:30.186261Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:46:30.186659Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:56:55.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:55 smithi142 bash[20347]: cluster 2024-01-27T23:56:53.545965+0000 mgr.smithi099.hzjdah (mgr.14182) 1441 : cluster [DBG] pgmap v941: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:55.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:55 smithi099 bash[16328]: cluster 2024-01-27T23:56:53.545965+0000 mgr.smithi099.hzjdah (mgr.14182) 1441 : cluster [DBG] pgmap v941: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:55.876 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:56:56.877 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:56:57.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:57 smithi142 bash[20347]: audit 2024-01-27T23:56:55.223694+0000 mgr.smithi099.hzjdah (mgr.14182) 1442 : audit [DBG] from='client.15708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:57.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:57 smithi142 bash[20347]: cluster 2024-01-27T23:56:55.547251+0000 mgr.smithi099.hzjdah (mgr.14182) 1443 : cluster [DBG] pgmap v942: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:56:57.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:57 smithi099 bash[16328]: audit 2024-01-27T23:56:55.223694+0000 mgr.smithi099.hzjdah (mgr.14182) 1442 : audit [DBG] from='client.15708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:56:57.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:57 smithi099 bash[16328]: cluster 2024-01-27T23:56:55.547251+0000 mgr.smithi099.hzjdah (mgr.14182) 1443 : cluster [DBG] pgmap v942: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:56:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:58 smithi142 bash[20347]: cluster 2024-01-27T23:56:57.548752+0000 mgr.smithi099.hzjdah (mgr.14182) 1444 : cluster [DBG] pgmap v943: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:59.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:58 smithi142 bash[20347]: audit 2024-01-27T23:56:57.890099+0000 mon.smithi099 (mon.0) 1004 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:56:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:58 smithi142 bash[20347]: audit 2024-01-27T23:56:58.182539+0000 mon.smithi099 (mon.0) 1005 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:56:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:58 smithi142 bash[20347]: audit 2024-01-27T23:56:58.183978+0000 mon.smithi099 (mon.0) 1006 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:56:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:58 smithi142 bash[20347]: audit 2024-01-27T23:56:58.193949+0000 mon.smithi099 (mon.0) 1007 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:56:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:58 smithi142 bash[20347]: audit 2024-01-27T23:56:58.207744+0000 mon.smithi099 (mon.0) 1008 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:56:59.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:56:58 smithi142 bash[20347]: audit 2024-01-27T23:56:58.235208+0000 mon.smithi099 (mon.0) 1009 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:56:59.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:58 smithi099 bash[16328]: cluster 2024-01-27T23:56:57.548752+0000 mgr.smithi099.hzjdah (mgr.14182) 1444 : cluster [DBG] pgmap v943: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:56:59.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:58 smithi099 bash[16328]: audit 2024-01-27T23:56:57.890099+0000 mon.smithi099 (mon.0) 1004 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:56:59.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:58 smithi099 bash[16328]: audit 2024-01-27T23:56:58.182539+0000 mon.smithi099 (mon.0) 1005 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:56:59.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:58 smithi099 bash[16328]: audit 2024-01-27T23:56:58.183978+0000 mon.smithi099 (mon.0) 1006 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:56:59.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:58 smithi099 bash[16328]: audit 2024-01-27T23:56:58.193949+0000 mon.smithi099 (mon.0) 1007 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:56:59.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:58 smithi099 bash[16328]: audit 2024-01-27T23:56:58.207744+0000 mon.smithi099 (mon.0) 1008 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:56:59.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:56:58 smithi099 bash[16328]: audit 2024-01-27T23:56:58.235208+0000 mon.smithi099 (mon.0) 1009 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:57:00.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:00 smithi099 bash[16328]: cluster 2024-01-27T23:56:58.195024+0000 mgr.smithi099.hzjdah (mgr.14182) 1445 : cluster [DBG] pgmap v944: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:57:00.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:00 smithi099 bash[16328]: cephadm 2024-01-27T23:56:58.240290+0000 mgr.smithi099.hzjdah (mgr.14182) 1446 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.qsrgxl on smithi142 2024-01-27T23:57:00.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:00 smithi099 bash[16328]: cluster 2024-01-27T23:56:59.191062+0000 mon.smithi099 (mon.0) 1010 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:57:00.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:00 smithi099 bash[16328]: cluster 2024-01-27T23:56:59.191124+0000 mon.smithi099 (mon.0) 1011 : cluster [INF] Cluster is now healthy 2024-01-27T23:57:00.396 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:00.397 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:54:43.207551Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.purjlr on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:00.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:00 smithi142 bash[20347]: cluster 2024-01-27T23:56:58.195024+0000 mgr.smithi099.hzjdah (mgr.14182) 1445 : cluster [DBG] pgmap v944: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:57:00.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:00 smithi142 bash[20347]: cephadm 2024-01-27T23:56:58.240290+0000 mgr.smithi099.hzjdah (mgr.14182) 1446 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.qsrgxl on smithi142 2024-01-27T23:57:00.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:00 smithi142 bash[20347]: cluster 2024-01-27T23:56:59.191062+0000 mon.smithi099 (mon.0) 1010 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:57:00.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:00 smithi142 bash[20347]: cluster 2024-01-27T23:56:59.191124+0000 mon.smithi099 (mon.0) 1011 : cluster [INF] Cluster is now healthy 2024-01-27T23:57:00.999 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:02.000 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:02.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:02 smithi142 bash[20347]: cluster 2024-01-27T23:57:00.196096+0000 mgr.smithi099.hzjdah (mgr.14182) 1447 : cluster [DBG] pgmap v945: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:57:02.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:02 smithi142 bash[20347]: audit 2024-01-27T23:57:00.383500+0000 mgr.smithi099.hzjdah (mgr.14182) 1448 : audit [DBG] from='client.15712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:02.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:02 smithi142 bash[20347]: audit 2024-01-27T23:57:02.108127+0000 mon.smithi099 (mon.0) 1012 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.qsrgxl"}]: dispatch 2024-01-27T23:57:02.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:02 smithi099 bash[16328]: cluster 2024-01-27T23:57:00.196096+0000 mgr.smithi099.hzjdah (mgr.14182) 1447 : cluster [DBG] pgmap v945: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:57:02.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:02 smithi099 bash[16328]: audit 2024-01-27T23:57:00.383500+0000 mgr.smithi099.hzjdah (mgr.14182) 1448 : audit [DBG] from='client.15712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:02.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:02 smithi099 bash[16328]: audit 2024-01-27T23:57:02.108127+0000 mon.smithi099 (mon.0) 1012 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.qsrgxl"}]: dispatch 2024-01-27T23:57:03.461 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: cephadm 2024-01-27T23:57:02.106999+0000 mgr.smithi099.hzjdah (mgr.14182) 1449 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.461 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:03.461 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.461 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.461 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:03.461 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.461 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.qsrgxl ... 2024-01-27T23:57:03.461 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.461 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.462 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.qsrgxl ... 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: cephadm 2024-01-27T23:57:02.107487+0000 mgr.smithi099.hzjdah (mgr.14182) 1450 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: cephadm 2024-01-27T23:57:02.109744+0000 mgr.smithi099.hzjdah (mgr.14182) 1451 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.qsrgxl ... 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.463 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:03.464 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:03.464 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:03.464 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.464 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: cephadm 2024-01-27T23:57:02.114613+0000 mgr.smithi099.hzjdah (mgr.14182) 1452 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.klwglj on smithi099 2024-01-27T23:57:03.464 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:03 smithi099 bash[16328]: cluster 2024-01-27T23:57:02.197092+0000 mgr.smithi099.hzjdah (mgr.14182) 1453 : cluster [DBG] pgmap v946: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: cephadm 2024-01-27T23:57:02.106999+0000 mgr.smithi099.hzjdah (mgr.14182) 1449 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.qsrgxl ... 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:03.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.qsrgxl ... 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:03.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: cephadm 2024-01-27T23:57:02.107487+0000 mgr.smithi099.hzjdah (mgr.14182) 1450 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: cephadm 2024-01-27T23:57:02.109744+0000 mgr.smithi099.hzjdah (mgr.14182) 1451 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.qsrgxl ... 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:03.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:03.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: cephadm 2024-01-27T23:57:02.114613+0000 mgr.smithi099.hzjdah (mgr.14182) 1452 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.klwglj on smithi099 2024-01-27T23:57:03.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:03 smithi142 bash[20347]: cluster 2024-01-27T23:57:02.197092+0000 mgr.smithi099.hzjdah (mgr.14182) 1453 : cluster [DBG] pgmap v946: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:57:05.306 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:05.306 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:47.395057Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aszbzk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-aszbzk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.aszbzk\nDeploy daemon haproxy.nfs.foo.smithi142.aszbzk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.488878Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.ablumo on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-ablumo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.ablumo\nDeploy daemon haproxy.nfs.foo.smithi099.ablumo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:55:51.490862Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.lwvnvz on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:05.903 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:06.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:06 smithi099 bash[16328]: cluster 2024-01-27T23:57:04.198476+0000 mgr.smithi099.hzjdah (mgr.14182) 1454 : cluster [DBG] pgmap v947: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:57:06.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:06 smithi099 bash[16328]: audit 2024-01-27T23:57:06.062678+0000 mon.smithi099 (mon.0) 1013 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.klwglj"}]: dispatch 2024-01-27T23:57:06.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:06 smithi142 bash[20347]: cluster 2024-01-27T23:57:04.198476+0000 mgr.smithi099.hzjdah (mgr.14182) 1454 : cluster [DBG] pgmap v947: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:57:06.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:06 smithi142 bash[20347]: audit 2024-01-27T23:57:06.062678+0000 mon.smithi099 (mon.0) 1013 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.klwglj"}]: dispatch 2024-01-27T23:57:06.903 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: audit 2024-01-27T23:57:05.294718+0000 mgr.smithi099.hzjdah (mgr.14182) 1455 : audit [DBG] from='client.15716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: cephadm 2024-01-27T23:57:06.061928+0000 mgr.smithi099.hzjdah (mgr.14182) 1456 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.klwglj ... 2024-01-27T23:57:07.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:07.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.klwglj ... 2024-01-27T23:57:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:07.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: cephadm 2024-01-27T23:57:06.062166+0000 mgr.smithi099.hzjdah (mgr.14182) 1457 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: cephadm 2024-01-27T23:57:06.063888+0000 mgr.smithi099.hzjdah (mgr.14182) 1458 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.klwglj ... 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:07.339 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:07.339 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:07.339 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.339 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: cephadm 2024-01-27T23:57:06.065918+0000 mgr.smithi099.hzjdah (mgr.14182) 1459 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:57:07.339 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: cephadm 2024-01-27T23:57:06.067778+0000 mgr.smithi099.hzjdah (mgr.14182) 1460 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:57:07.339 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: cluster 2024-01-27T23:57:06.069431+0000 mgr.smithi099.hzjdah (mgr.14182) 1461 : cluster [DBG] pgmap v948: 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-01-27T23:57:07.339 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:07 smithi099 bash[16328]: cluster 2024-01-27T23:57:06.137551+0000 mon.smithi099 (mon.0) 1014 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: audit 2024-01-27T23:57:05.294718+0000 mgr.smithi099.hzjdah (mgr.14182) 1455 : audit [DBG] from='client.15716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: cephadm 2024-01-27T23:57:06.061928+0000 mgr.smithi099.hzjdah (mgr.14182) 1456 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.klwglj ... 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.klwglj ... 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: cephadm 2024-01-27T23:57:06.062166+0000 mgr.smithi099.hzjdah (mgr.14182) 1457 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: cephadm 2024-01-27T23:57:06.063888+0000 mgr.smithi099.hzjdah (mgr.14182) 1458 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj 2024-01-27T23:57:07.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.klwglj ... 2024-01-27T23:57:07.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:57:07.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:57:07.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:57:07.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:57:07.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: cephadm 2024-01-27T23:57:06.065918+0000 mgr.smithi099.hzjdah (mgr.14182) 1459 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:57:07.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: cephadm 2024-01-27T23:57:06.067778+0000 mgr.smithi099.hzjdah (mgr.14182) 1460 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:57:07.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: cluster 2024-01-27T23:57:06.069431+0000 mgr.smithi099.hzjdah (mgr.14182) 1461 : cluster [DBG] pgmap v948: 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-01-27T23:57:07.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:07 smithi142 bash[20347]: cluster 2024-01-27T23:57:06.137551+0000 mon.smithi099 (mon.0) 1014 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:57:08.417 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:08 smithi099 bash[16328]: cluster 2024-01-27T23:57:08.071545+0000 mgr.smithi099.hzjdah (mgr.14182) 1462 : cluster [DBG] pgmap v949: 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-01-27T23:57:08.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:08 smithi142 bash[20347]: cluster 2024-01-27T23:57:08.071545+0000 mgr.smithi099.hzjdah (mgr.14182) 1462 : cluster [DBG] pgmap v949: 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-01-27T23:57:10.249 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:10.249 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:10 smithi142 bash[20347]: audit 2024-01-27T23:57:09.254714+0000 mon.smithi099 (mon.0) 1015 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:57:10.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:10 smithi142 bash[20347]: cluster 2024-01-27T23:57:10.072751+0000 mgr.smithi099.hzjdah (mgr.14182) 1463 : cluster [DBG] pgmap v950: 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-01-27T23:57:10.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:10 smithi099 bash[16328]: audit 2024-01-27T23:57:09.254714+0000 mon.smithi099 (mon.0) 1015 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:57:10.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:10 smithi099 bash[16328]: cluster 2024-01-27T23:57:10.072751+0000 mgr.smithi099.hzjdah (mgr.14182) 1463 : cluster [DBG] pgmap v950: 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-01-27T23:57:10.872 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:11.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:11 smithi142 bash[20347]: audit 2024-01-27T23:57:10.238302+0000 mgr.smithi099.hzjdah (mgr.14182) 1464 : audit [DBG] from='client.15720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:11.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:11 smithi099 bash[16328]: audit 2024-01-27T23:57:10.238302+0000 mgr.smithi099.hzjdah (mgr.14182) 1464 : audit [DBG] from='client.15720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:11.873 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:12.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:12 smithi142 bash[20347]: cluster 2024-01-27T23:57:12.073801+0000 mgr.smithi099.hzjdah (mgr.14182) 1465 : cluster [DBG] pgmap v951: 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-01-27T23:57:12.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:12 smithi099 bash[16328]: cluster 2024-01-27T23:57:12.073801+0000 mgr.smithi099.hzjdah (mgr.14182) 1465 : cluster [DBG] pgmap v951: 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-01-27T23:57:15.152 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:15.152 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:15.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:15 smithi142 bash[20347]: cluster 2024-01-27T23:57:14.075446+0000 mgr.smithi099.hzjdah (mgr.14182) 1466 : cluster [DBG] pgmap v952: 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-01-27T23:57:15.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:15 smithi099 bash[16328]: cluster 2024-01-27T23:57:14.075446+0000 mgr.smithi099.hzjdah (mgr.14182) 1466 : cluster [DBG] pgmap v952: 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-01-27T23:57:15.773 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:16.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:16 smithi142 bash[20347]: audit 2024-01-27T23:57:15.146361+0000 mgr.smithi099.hzjdah (mgr.14182) 1467 : audit [DBG] from='client.15724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:16.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:16 smithi142 bash[20347]: cluster 2024-01-27T23:57:16.076847+0000 mgr.smithi099.hzjdah (mgr.14182) 1468 : cluster [DBG] pgmap v953: 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-01-27T23:57:16.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:16 smithi099 bash[16328]: audit 2024-01-27T23:57:15.146361+0000 mgr.smithi099.hzjdah (mgr.14182) 1467 : audit [DBG] from='client.15724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:16.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:16 smithi099 bash[16328]: cluster 2024-01-27T23:57:16.076847+0000 mgr.smithi099.hzjdah (mgr.14182) 1468 : cluster [DBG] pgmap v953: 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-01-27T23:57:16.774 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:19.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:19 smithi142 bash[20347]: cluster 2024-01-27T23:57:18.078435+0000 mgr.smithi099.hzjdah (mgr.14182) 1469 : 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-01-27T23:57:19.563 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:19 smithi099 bash[16328]: cluster 2024-01-27T23:57:18.078435+0000 mgr.smithi099.hzjdah (mgr.14182) 1469 : 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-01-27T23:57:19.996 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:19.997 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:20.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:20 smithi099 bash[16328]: audit 2024-01-27T23:57:19.988166+0000 mgr.smithi099.hzjdah (mgr.14182) 1470 : audit [DBG] from='client.15728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:20.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:20 smithi099 bash[16328]: cluster 2024-01-27T23:57:20.079423+0000 mgr.smithi099.hzjdah (mgr.14182) 1471 : 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-01-27T23:57:20.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:20 smithi142 bash[20347]: audit 2024-01-27T23:57:19.988166+0000 mgr.smithi099.hzjdah (mgr.14182) 1470 : audit [DBG] from='client.15728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:20.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:20 smithi142 bash[20347]: cluster 2024-01-27T23:57:20.079423+0000 mgr.smithi099.hzjdah (mgr.14182) 1471 : 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-01-27T23:57:20.674 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:21.675 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:23.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:23 smithi142 bash[20347]: cluster 2024-01-27T23:57:22.081077+0000 mgr.smithi099.hzjdah (mgr.14182) 1472 : 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-01-27T23:57:23.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:23 smithi099 bash[16328]: cluster 2024-01-27T23:57:22.081077+0000 mgr.smithi099.hzjdah (mgr.14182) 1472 : 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-01-27T23:57:24.886 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:24.887 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:25.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:25 smithi099 bash[16328]: cluster 2024-01-27T23:57:24.082766+0000 mgr.smithi099.hzjdah (mgr.14182) 1473 : 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-01-27T23:57:25.483 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:25.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:25 smithi142 bash[20347]: cluster 2024-01-27T23:57:24.082766+0000 mgr.smithi099.hzjdah (mgr.14182) 1473 : 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-01-27T23:57:26.484 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:26.495 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:26 smithi099 bash[16328]: audit 2024-01-27T23:57:24.876185+0000 mgr.smithi099.hzjdah (mgr.14182) 1474 : audit [DBG] from='client.15732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:26.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:26 smithi142 bash[20347]: audit 2024-01-27T23:57:24.876185+0000 mgr.smithi099.hzjdah (mgr.14182) 1474 : audit [DBG] from='client.15732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:27.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:27 smithi142 bash[20347]: cluster 2024-01-27T23:57:26.084250+0000 mgr.smithi099.hzjdah (mgr.14182) 1475 : 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-01-27T23:57:27.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:27 smithi099 bash[16328]: cluster 2024-01-27T23:57:26.084250+0000 mgr.smithi099.hzjdah (mgr.14182) 1475 : 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-01-27T23:57:28.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:28 smithi099 bash[16328]: cluster 2024-01-27T23:57:28.085560+0000 mgr.smithi099.hzjdah (mgr.14182) 1476 : 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-01-27T23:57:28.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:28 smithi142 bash[20347]: cluster 2024-01-27T23:57:28.085560+0000 mgr.smithi099.hzjdah (mgr.14182) 1476 : 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-01-27T23:57:29.908 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:29.908 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:30.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:30 smithi099 bash[16328]: audit 2024-01-27T23:57:29.896072+0000 mgr.smithi099.hzjdah (mgr.14182) 1477 : audit [DBG] from='client.15736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:30.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:30 smithi099 bash[16328]: cluster 2024-01-27T23:57:30.086948+0000 mgr.smithi099.hzjdah (mgr.14182) 1478 : 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-01-27T23:57:30.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:30 smithi142 bash[20347]: audit 2024-01-27T23:57:29.896072+0000 mgr.smithi099.hzjdah (mgr.14182) 1477 : audit [DBG] from='client.15736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:30.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:30 smithi142 bash[20347]: cluster 2024-01-27T23:57:30.086948+0000 mgr.smithi099.hzjdah (mgr.14182) 1478 : 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-01-27T23:57:30.572 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:31.573 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:33.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:33 smithi099 bash[16328]: cluster 2024-01-27T23:57:32.088728+0000 mgr.smithi099.hzjdah (mgr.14182) 1479 : 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-01-27T23:57:33.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:33 smithi142 bash[20347]: cluster 2024-01-27T23:57:32.088728+0000 mgr.smithi099.hzjdah (mgr.14182) 1479 : 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-01-27T23:57:34.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:34 smithi142 bash[20347]: cluster 2024-01-27T23:57:34.090523+0000 mgr.smithi099.hzjdah (mgr.14182) 1480 : 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-01-27T23:57:34.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:34 smithi099 bash[16328]: cluster 2024-01-27T23:57:34.090523+0000 mgr.smithi099.hzjdah (mgr.14182) 1480 : 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-01-27T23:57:34.725 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:34.725 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:35.345 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:35.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:35 smithi142 bash[20347]: audit 2024-01-27T23:57:34.719785+0000 mgr.smithi099.hzjdah (mgr.14182) 1481 : audit [DBG] from='client.15740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:35.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:35 smithi099 bash[16328]: audit 2024-01-27T23:57:34.719785+0000 mgr.smithi099.hzjdah (mgr.14182) 1481 : audit [DBG] from='client.15740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:36.346 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:36.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:36 smithi142 bash[20347]: cluster 2024-01-27T23:57:36.091986+0000 mgr.smithi099.hzjdah (mgr.14182) 1482 : 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-01-27T23:57:36.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:36 smithi099 bash[16328]: cluster 2024-01-27T23:57:36.091986+0000 mgr.smithi099.hzjdah (mgr.14182) 1482 : 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-01-27T23:57:38.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:38 smithi142 bash[20347]: cluster 2024-01-27T23:57:38.093916+0000 mgr.smithi099.hzjdah (mgr.14182) 1483 : 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-01-27T23:57:38.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:38 smithi099 bash[16328]: cluster 2024-01-27T23:57:38.093916+0000 mgr.smithi099.hzjdah (mgr.14182) 1483 : 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-01-27T23:57:39.631 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:39.631 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:40.255 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:40.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:40 smithi142 bash[20347]: audit 2024-01-27T23:57:39.622972+0000 mgr.smithi099.hzjdah (mgr.14182) 1484 : audit [DBG] from='client.15744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:40.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:40 smithi142 bash[20347]: cluster 2024-01-27T23:57:40.095417+0000 mgr.smithi099.hzjdah (mgr.14182) 1485 : 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-01-27T23:57:40.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:40 smithi099 bash[16328]: audit 2024-01-27T23:57:39.622972+0000 mgr.smithi099.hzjdah (mgr.14182) 1484 : audit [DBG] from='client.15744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:40.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:40 smithi099 bash[16328]: cluster 2024-01-27T23:57:40.095417+0000 mgr.smithi099.hzjdah (mgr.14182) 1485 : 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-01-27T23:57:41.256 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:42.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:42 smithi142 bash[20347]: cluster 2024-01-27T23:57:42.097170+0000 mgr.smithi099.hzjdah (mgr.14182) 1486 : 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-01-27T23:57:42.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:42 smithi099 bash[16328]: cluster 2024-01-27T23:57:42.097170+0000 mgr.smithi099.hzjdah (mgr.14182) 1486 : 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-01-27T23:57:44.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:44 smithi099 bash[16328]: cluster 2024-01-27T23:57:44.098158+0000 mgr.smithi099.hzjdah (mgr.14182) 1487 : 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-01-27T23:57:44.501 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:44.502 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:44.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:44 smithi142 bash[20347]: cluster 2024-01-27T23:57:44.098158+0000 mgr.smithi099.hzjdah (mgr.14182) 1487 : 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-01-27T23:57:45.153 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:45.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:45 smithi142 bash[20347]: audit 2024-01-27T23:57:44.488063+0000 mgr.smithi099.hzjdah (mgr.14182) 1488 : audit [DBG] from='client.15748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:45 smithi099 bash[16328]: audit 2024-01-27T23:57:44.488063+0000 mgr.smithi099.hzjdah (mgr.14182) 1488 : audit [DBG] from='client.15748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:46.154 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:46.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:46 smithi142 bash[20347]: cluster 2024-01-27T23:57:46.099627+0000 mgr.smithi099.hzjdah (mgr.14182) 1489 : 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-01-27T23:57:46.589 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:46 smithi099 bash[16328]: cluster 2024-01-27T23:57:46.099627+0000 mgr.smithi099.hzjdah (mgr.14182) 1489 : 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-01-27T23:57:48.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:48 smithi142 bash[20347]: cluster 2024-01-27T23:57:48.101615+0000 mgr.smithi099.hzjdah (mgr.14182) 1490 : 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-01-27T23:57:48.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:48 smithi099 bash[16328]: cluster 2024-01-27T23:57:48.101615+0000 mgr.smithi099.hzjdah (mgr.14182) 1490 : 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-01-27T23:57:49.451 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:49.451 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:50.137 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:50.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:50 smithi142 bash[20347]: audit 2024-01-27T23:57:49.445347+0000 mgr.smithi099.hzjdah (mgr.14182) 1491 : audit [DBG] from='client.15752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:50.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:50 smithi142 bash[20347]: cluster 2024-01-27T23:57:50.103007+0000 mgr.smithi099.hzjdah (mgr.14182) 1492 : 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-01-27T23:57:50.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:50 smithi099 bash[16328]: audit 2024-01-27T23:57:49.445347+0000 mgr.smithi099.hzjdah (mgr.14182) 1491 : audit [DBG] from='client.15752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:50.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:50 smithi099 bash[16328]: cluster 2024-01-27T23:57:50.103007+0000 mgr.smithi099.hzjdah (mgr.14182) 1492 : 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-01-27T23:57:51.138 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:52.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:52 smithi142 bash[20347]: cluster 2024-01-27T23:57:52.104722+0000 mgr.smithi099.hzjdah (mgr.14182) 1493 : cluster [DBG] pgmap v971: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:57:52.567 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:52 smithi099 bash[16328]: cluster 2024-01-27T23:57:52.104722+0000 mgr.smithi099.hzjdah (mgr.14182) 1493 : cluster [DBG] pgmap v971: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:57:54.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:54 smithi099 bash[16328]: cluster 2024-01-27T23:57:54.106235+0000 mgr.smithi099.hzjdah (mgr.14182) 1494 : cluster [DBG] pgmap v972: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:57:54.500 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:54.500 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:57:54.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:54 smithi142 bash[20347]: cluster 2024-01-27T23:57:54.106235+0000 mgr.smithi099.hzjdah (mgr.14182) 1494 : cluster [DBG] pgmap v972: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:57:55.156 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:57:55.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:55 smithi142 bash[20347]: audit 2024-01-27T23:57:54.489071+0000 mgr.smithi099.hzjdah (mgr.14182) 1495 : audit [DBG] from='client.15756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:55.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:55 smithi099 bash[16328]: audit 2024-01-27T23:57:54.489071+0000 mgr.smithi099.hzjdah (mgr.14182) 1495 : audit [DBG] from='client.15756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:57:56.157 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:57:56.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:56 smithi142 bash[20347]: cluster 2024-01-27T23:57:56.107697+0000 mgr.smithi099.hzjdah (mgr.14182) 1496 : cluster [DBG] pgmap v973: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:57:56.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:56 smithi099 bash[16328]: cluster 2024-01-27T23:57:56.107697+0000 mgr.smithi099.hzjdah (mgr.14182) 1496 : cluster [DBG] pgmap v973: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:57:58.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:57:58 smithi142 bash[20347]: cluster 2024-01-27T23:57:58.109721+0000 mgr.smithi099.hzjdah (mgr.14182) 1497 : cluster [DBG] pgmap v974: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:57:58.606 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:57:58 smithi099 bash[16328]: cluster 2024-01-27T23:57:58.109721+0000 mgr.smithi099.hzjdah (mgr.14182) 1497 : cluster [DBG] pgmap v974: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:57:59.436 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:57:59.436 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:00.035 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:00.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:00 smithi099 bash[16328]: audit 2024-01-27T23:57:59.422840+0000 mgr.smithi099.hzjdah (mgr.14182) 1498 : audit [DBG] from='client.15760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:00.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:00 smithi099 bash[16328]: cluster 2024-01-27T23:58:00.111325+0000 mgr.smithi099.hzjdah (mgr.14182) 1499 : cluster [DBG] pgmap v975: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:00.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:00 smithi142 bash[20347]: audit 2024-01-27T23:57:59.422840+0000 mgr.smithi099.hzjdah (mgr.14182) 1498 : audit [DBG] from='client.15760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:00.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:00 smithi142 bash[20347]: cluster 2024-01-27T23:58:00.111325+0000 mgr.smithi099.hzjdah (mgr.14182) 1499 : cluster [DBG] pgmap v975: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:01.036 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:02.432 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:02 smithi099 bash[16328]: cluster 2024-01-27T23:58:02.113069+0000 mgr.smithi099.hzjdah (mgr.14182) 1500 : cluster [DBG] pgmap v976: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:02.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:02 smithi142 bash[20347]: cluster 2024-01-27T23:58:02.113069+0000 mgr.smithi099.hzjdah (mgr.14182) 1500 : cluster [DBG] pgmap v976: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:04.270 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:04.270 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:04.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:04 smithi142 bash[20347]: cluster 2024-01-27T23:58:04.114154+0000 mgr.smithi099.hzjdah (mgr.14182) 1501 : cluster [DBG] pgmap v977: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:04.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:04 smithi099 bash[16328]: cluster 2024-01-27T23:58:04.114154+0000 mgr.smithi099.hzjdah (mgr.14182) 1501 : cluster [DBG] pgmap v977: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:04.890 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:05.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:05 smithi142 bash[20347]: audit 2024-01-27T23:58:04.257279+0000 mgr.smithi099.hzjdah (mgr.14182) 1502 : audit [DBG] from='client.15764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:05.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:05 smithi099 bash[16328]: audit 2024-01-27T23:58:04.257279+0000 mgr.smithi099.hzjdah (mgr.14182) 1502 : audit [DBG] from='client.15764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:05.891 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:06.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:06 smithi142 bash[20347]: audit 2024-01-27T23:58:06.071591+0000 mon.smithi099 (mon.0) 1016 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:58:06.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:06 smithi142 bash[20347]: cluster 2024-01-27T23:58:06.115145+0000 mgr.smithi099.hzjdah (mgr.14182) 1503 : cluster [DBG] pgmap v978: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:58:06.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:06 smithi099 bash[16328]: audit 2024-01-27T23:58:06.071591+0000 mon.smithi099 (mon.0) 1016 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:58:06.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:06 smithi099 bash[16328]: cluster 2024-01-27T23:58:06.115145+0000 mgr.smithi099.hzjdah (mgr.14182) 1503 : cluster [DBG] pgmap v978: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:58:07.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:07 smithi099 bash[16328]: audit 2024-01-27T23:58:06.365938+0000 mon.smithi099 (mon.0) 1017 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:58:07.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:07 smithi142 bash[20347]: audit 2024-01-27T23:58:06.365938+0000 mon.smithi099 (mon.0) 1017 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:58:08.736 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:08 smithi099 bash[16328]: cluster 2024-01-27T23:58:08.116742+0000 mgr.smithi099.hzjdah (mgr.14182) 1504 : cluster [DBG] pgmap v979: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:08.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:08 smithi142 bash[20347]: cluster 2024-01-27T23:58:08.116742+0000 mgr.smithi099.hzjdah (mgr.14182) 1504 : cluster [DBG] pgmap v979: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:09.152 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:09.152 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:47:44.547774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:47:44.548168Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:47:44.548495Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:47:44.548744Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:47:44.548975Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:47:44.548861Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:47:44.549599Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:09.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:09 smithi099 bash[16328]: audit 2024-01-27T23:58:09.141728+0000 mgr.smithi099.hzjdah (mgr.14182) 1505 : audit [DBG] from='client.15768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:09.775 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:09.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:09 smithi142 bash[20347]: audit 2024-01-27T23:58:09.141728+0000 mgr.smithi099.hzjdah (mgr.14182) 1505 : audit [DBG] from='client.15768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:10.776 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:10.789 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:10 smithi099 bash[16328]: cluster 2024-01-27T23:58:10.118395+0000 mgr.smithi099.hzjdah (mgr.14182) 1506 : cluster [DBG] pgmap v980: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:10.806 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:10 smithi142 bash[20347]: cluster 2024-01-27T23:58:10.118395+0000 mgr.smithi099.hzjdah (mgr.14182) 1506 : cluster [DBG] pgmap v980: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:13.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:12 smithi142 bash[20347]: audit 2024-01-27T23:58:11.942788+0000 mon.smithi099 (mon.0) 1018 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:58:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:12 smithi142 bash[20347]: cluster 2024-01-27T23:58:12.120349+0000 mgr.smithi099.hzjdah (mgr.14182) 1507 : 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-01-27T23:58:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:12 smithi142 bash[20347]: audit 2024-01-27T23:58:12.233614+0000 mon.smithi099 (mon.0) 1019 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:58:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:12 smithi142 bash[20347]: audit 2024-01-27T23:58:12.235464+0000 mon.smithi099 (mon.0) 1020 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:58:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:12 smithi142 bash[20347]: audit 2024-01-27T23:58:12.244886+0000 mon.smithi099 (mon.0) 1021 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:58:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:12 smithi142 bash[20347]: audit 2024-01-27T23:58:12.251372+0000 mon.smithi099 (mon.0) 1022 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:58:13.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:12 smithi142 bash[20347]: audit 2024-01-27T23:58:12.264592+0000 mon.smithi099 (mon.0) 1023 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:58:13.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:12 smithi099 bash[16328]: audit 2024-01-27T23:58:11.942788+0000 mon.smithi099 (mon.0) 1018 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:58:13.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:12 smithi099 bash[16328]: cluster 2024-01-27T23:58:12.120349+0000 mgr.smithi099.hzjdah (mgr.14182) 1507 : 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-01-27T23:58:13.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:12 smithi099 bash[16328]: audit 2024-01-27T23:58:12.233614+0000 mon.smithi099 (mon.0) 1019 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:58:13.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:12 smithi099 bash[16328]: audit 2024-01-27T23:58:12.235464+0000 mon.smithi099 (mon.0) 1020 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:58:13.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:12 smithi099 bash[16328]: audit 2024-01-27T23:58:12.244886+0000 mon.smithi099 (mon.0) 1021 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:58:13.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:12 smithi099 bash[16328]: audit 2024-01-27T23:58:12.251372+0000 mon.smithi099 (mon.0) 1022 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:58:13.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:12 smithi099 bash[16328]: audit 2024-01-27T23:58:12.264592+0000 mon.smithi099 (mon.0) 1023 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:58:14.078 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:14.079 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:55:51.492423Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yoitct on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:14.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:13 smithi142 bash[20347]: cluster 2024-01-27T23:58:12.245960+0000 mgr.smithi099.hzjdah (mgr.14182) 1508 : cluster [DBG] pgmap v982: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:58:14.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:13 smithi142 bash[20347]: cephadm 2024-01-27T23:58:12.267849+0000 mgr.smithi099.hzjdah (mgr.14182) 1509 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.nkxhyj on smithi142 2024-01-27T23:58:14.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:13 smithi142 bash[20347]: cluster 2024-01-27T23:58:12.940466+0000 mon.smithi099 (mon.0) 1024 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:58:14.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:13 smithi142 bash[20347]: cluster 2024-01-27T23:58:12.940533+0000 mon.smithi099 (mon.0) 1025 : cluster [INF] Cluster is now healthy 2024-01-27T23:58:14.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:13 smithi099 bash[16328]: cluster 2024-01-27T23:58:12.245960+0000 mgr.smithi099.hzjdah (mgr.14182) 1508 : cluster [DBG] pgmap v982: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:58:14.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:13 smithi099 bash[16328]: cephadm 2024-01-27T23:58:12.267849+0000 mgr.smithi099.hzjdah (mgr.14182) 1509 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.nkxhyj on smithi142 2024-01-27T23:58:14.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:13 smithi099 bash[16328]: cluster 2024-01-27T23:58:12.940466+0000 mon.smithi099 (mon.0) 1024 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:58:14.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:13 smithi099 bash[16328]: cluster 2024-01-27T23:58:12.940533+0000 mon.smithi099 (mon.0) 1025 : cluster [INF] Cluster is now healthy 2024-01-27T23:58:14.674 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:15.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:14 smithi142 bash[20347]: audit 2024-01-27T23:58:14.064898+0000 mgr.smithi099.hzjdah (mgr.14182) 1510 : audit [DBG] from='client.15772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:15.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:14 smithi099 bash[16328]: audit 2024-01-27T23:58:14.064898+0000 mgr.smithi099.hzjdah (mgr.14182) 1510 : audit [DBG] from='client.15772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:15.675 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:16.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:15 smithi142 bash[20347]: cluster 2024-01-27T23:58:14.247389+0000 mgr.smithi099.hzjdah (mgr.14182) 1511 : cluster [DBG] pgmap v983: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:58:16.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:15 smithi099 bash[16328]: cluster 2024-01-27T23:58:14.247389+0000 mgr.smithi099.hzjdah (mgr.14182) 1511 : cluster [DBG] pgmap v983: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:58:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: cephadm 2024-01-27T23:58:16.109872+0000 mgr.smithi099.hzjdah (mgr.14182) 1512 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.nkxhyj ... 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:58:17.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.nkxhyj ... 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: cephadm 2024-01-27T23:58:16.110419+0000 mgr.smithi099.hzjdah (mgr.14182) 1513 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: audit 2024-01-27T23:58:16.111160+0000 mon.smithi099 (mon.0) 1026 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.nkxhyj"}]: dispatch 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: cephadm 2024-01-27T23:58:16.113117+0000 mgr.smithi099.hzjdah (mgr.14182) 1514 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.nkxhyj ... 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:16 smithi142 bash[20347]: cephadm 2024-01-27T23:58:16.118128+0000 mgr.smithi099.hzjdah (mgr.14182) 1515 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.lyxeyt on smithi099 2024-01-27T23:58:17.313 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: cephadm 2024-01-27T23:58:16.109872+0000 mgr.smithi099.hzjdah (mgr.14182) 1512 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.313 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:17.313 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.313 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.313 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:17.313 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.313 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.nkxhyj ... 2024-01-27T23:58:17.313 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:17.314 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.nkxhyj ... 2024-01-27T23:58:17.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:17.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:17.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:17.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: cephadm 2024-01-27T23:58:16.110419+0000 mgr.smithi099.hzjdah (mgr.14182) 1513 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: audit 2024-01-27T23:58:16.111160+0000 mon.smithi099 (mon.0) 1026 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.nkxhyj"}]: dispatch 2024-01-27T23:58:17.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: cephadm 2024-01-27T23:58:16.113117+0000 mgr.smithi099.hzjdah (mgr.14182) 1514 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.315 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.nkxhyj ... 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:17.316 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:16 smithi099 bash[16328]: cephadm 2024-01-27T23:58:16.118128+0000 mgr.smithi099.hzjdah (mgr.14182) 1515 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.lyxeyt on smithi099 2024-01-27T23:58:18.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:17 smithi142 bash[20347]: cluster 2024-01-27T23:58:16.248707+0000 mgr.smithi099.hzjdah (mgr.14182) 1516 : cluster [DBG] pgmap v984: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:58:18.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:17 smithi099 bash[16328]: cluster 2024-01-27T23:58:16.248707+0000 mgr.smithi099.hzjdah (mgr.14182) 1516 : cluster [DBG] pgmap v984: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:58:19.258 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:19.258 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:02.109503Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qsrgxl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-qsrgxl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.qsrgxl\nDeploy daemon haproxy.nfs.foo.smithi142.qsrgxl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.063754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.klwglj on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-klwglj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.klwglj\nDeploy daemon haproxy.nfs.foo.smithi099.klwglj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:57:06.065804Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gqbkrw on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:19.893 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:20.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:19 smithi142 bash[20347]: cluster 2024-01-27T23:58:18.250643+0000 mgr.smithi099.hzjdah (mgr.14182) 1517 : cluster [DBG] pgmap v985: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:58:20.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:19 smithi099 bash[16328]: cluster 2024-01-27T23:58:18.250643+0000 mgr.smithi099.hzjdah (mgr.14182) 1517 : cluster [DBG] pgmap v985: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-01-27T23:58:20.894 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: audit 2024-01-27T23:58:19.244479+0000 mgr.smithi099.hzjdah (mgr.14182) 1518 : audit [DBG] from='client.15776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: cephadm 2024-01-27T23:58:20.043362+0000 mgr.smithi099.hzjdah (mgr.14182) 1519 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.lyxeyt ... 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:58:21.308 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.lyxeyt ... 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.309 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: cephadm 2024-01-27T23:58:20.043902+0000 mgr.smithi099.hzjdah (mgr.14182) 1520 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: audit 2024-01-27T23:58:20.044495+0000 mon.smithi099 (mon.0) 1027 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.lyxeyt"}]: dispatch 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: cephadm 2024-01-27T23:58:20.045868+0000 mgr.smithi099.hzjdah (mgr.14182) 1521 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.lyxeyt ... 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: cephadm 2024-01-27T23:58:20.051213+0000 mgr.smithi099.hzjdah (mgr.14182) 1522 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:58:21.310 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: cephadm 2024-01-27T23:58:20.055161+0000 mgr.smithi099.hzjdah (mgr.14182) 1523 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:58:21.311 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:20 smithi142 bash[20347]: cluster 2024-01-27T23:58:20.057275+0000 mgr.smithi099.hzjdah (mgr.14182) 1524 : cluster [DBG] pgmap v986: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:58:21.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: audit 2024-01-27T23:58:19.244479+0000 mgr.smithi099.hzjdah (mgr.14182) 1518 : audit [DBG] from='client.15776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:21.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: cephadm 2024-01-27T23:58:20.043362+0000 mgr.smithi099.hzjdah (mgr.14182) 1519 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:21.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:21.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.lyxeyt ... 2024-01-27T23:58:21.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:21.336 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:21.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.lyxeyt ... 2024-01-27T23:58:21.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:21.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:21.337 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: cephadm 2024-01-27T23:58:20.043902+0000 mgr.smithi099.hzjdah (mgr.14182) 1520 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: audit 2024-01-27T23:58:20.044495+0000 mon.smithi099 (mon.0) 1027 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.lyxeyt"}]: dispatch 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: cephadm 2024-01-27T23:58:20.045868+0000 mgr.smithi099.hzjdah (mgr.14182) 1521 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.lyxeyt ... 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:58:21.338 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:58:21.339 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: cephadm 2024-01-27T23:58:20.051213+0000 mgr.smithi099.hzjdah (mgr.14182) 1522 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:58:21.339 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: cephadm 2024-01-27T23:58:20.055161+0000 mgr.smithi099.hzjdah (mgr.14182) 1523 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:58:21.339 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:20 smithi099 bash[16328]: cluster 2024-01-27T23:58:20.057275+0000 mgr.smithi099.hzjdah (mgr.14182) 1524 : cluster [DBG] pgmap v986: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:58:22.286 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:21 smithi099 bash[16328]: cluster 2024-01-27T23:58:20.979514+0000 mon.smithi099 (mon.0) 1028 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:58:22.306 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:21 smithi142 bash[20347]: cluster 2024-01-27T23:58:20.979514+0000 mon.smithi099 (mon.0) 1028 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:58:23.307 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:22 smithi142 bash[20347]: cluster 2024-01-27T23:58:22.059063+0000 mgr.smithi099.hzjdah (mgr.14182) 1525 : cluster [DBG] pgmap v987: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:58:23.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:23 smithi099 bash[16328]: cluster 2024-01-27T23:58:22.059063+0000 mgr.smithi099.hzjdah (mgr.14182) 1525 : cluster [DBG] pgmap v987: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-01-27T23:58:24.322 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:24.322 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:24.897 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:25.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:25 smithi099 bash[16328]: cluster 2024-01-27T23:58:24.060704+0000 mgr.smithi099.hzjdah (mgr.14182) 1526 : cluster [DBG] pgmap v988: 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-01-27T23:58:25.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:25 smithi099 bash[16328]: audit 2024-01-27T23:58:24.314574+0000 mon.smithi099 (mon.0) 1029 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:58:25.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:25 smithi142 bash[20347]: cluster 2024-01-27T23:58:24.060704+0000 mgr.smithi099.hzjdah (mgr.14182) 1526 : cluster [DBG] pgmap v988: 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-01-27T23:58:25.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:25 smithi142 bash[20347]: audit 2024-01-27T23:58:24.314574+0000 mon.smithi099 (mon.0) 1029 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:58:25.898 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:26.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:26 smithi099 bash[16328]: audit 2024-01-27T23:58:24.316260+0000 mgr.smithi099.hzjdah (mgr.14182) 1527 : audit [DBG] from='client.15780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:26.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:26 smithi142 bash[20347]: audit 2024-01-27T23:58:24.316260+0000 mgr.smithi099.hzjdah (mgr.14182) 1527 : audit [DBG] from='client.15780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:27.292 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:27 smithi099 bash[16328]: cluster 2024-01-27T23:58:26.062212+0000 mgr.smithi099.hzjdah (mgr.14182) 1528 : cluster [DBG] pgmap v989: 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-01-27T23:58:27.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:27 smithi142 bash[20347]: cluster 2024-01-27T23:58:26.062212+0000 mgr.smithi099.hzjdah (mgr.14182) 1528 : cluster [DBG] pgmap v989: 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-01-27T23:58:29.051 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:29.051 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:29.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:29 smithi142 bash[20347]: cluster 2024-01-27T23:58:28.064094+0000 mgr.smithi099.hzjdah (mgr.14182) 1529 : cluster [DBG] pgmap v990: 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-01-27T23:58:29.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:29 smithi099 bash[16328]: cluster 2024-01-27T23:58:28.064094+0000 mgr.smithi099.hzjdah (mgr.14182) 1529 : cluster [DBG] pgmap v990: 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-01-27T23:58:29.741 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:30.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:30 smithi142 bash[20347]: audit 2024-01-27T23:58:29.038712+0000 mgr.smithi099.hzjdah (mgr.14182) 1530 : audit [DBG] from='client.15784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:30.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:30 smithi099 bash[16328]: audit 2024-01-27T23:58:29.038712+0000 mgr.smithi099.hzjdah (mgr.14182) 1530 : audit [DBG] from='client.15784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:30.742 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:31.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:31 smithi142 bash[20347]: cluster 2024-01-27T23:58:30.065683+0000 mgr.smithi099.hzjdah (mgr.14182) 1531 : cluster [DBG] pgmap v991: 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-01-27T23:58:31.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:31 smithi099 bash[16328]: cluster 2024-01-27T23:58:30.065683+0000 mgr.smithi099.hzjdah (mgr.14182) 1531 : cluster [DBG] pgmap v991: 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-01-27T23:58:33.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:33 smithi142 bash[20347]: cluster 2024-01-27T23:58:32.067578+0000 mgr.smithi099.hzjdah (mgr.14182) 1532 : 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-01-27T23:58:33.715 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:33 smithi099 bash[16328]: cluster 2024-01-27T23:58:32.067578+0000 mgr.smithi099.hzjdah (mgr.14182) 1532 : 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-01-27T23:58:34.135 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:34.135 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:34.820 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:35.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:35 smithi142 bash[20347]: cluster 2024-01-27T23:58:34.069205+0000 mgr.smithi099.hzjdah (mgr.14182) 1533 : cluster [DBG] pgmap v993: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:35.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:35 smithi142 bash[20347]: audit 2024-01-27T23:58:34.124208+0000 mgr.smithi099.hzjdah (mgr.14182) 1534 : audit [DBG] from='client.15788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:35.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:35 smithi099 bash[16328]: cluster 2024-01-27T23:58:34.069205+0000 mgr.smithi099.hzjdah (mgr.14182) 1533 : cluster [DBG] pgmap v993: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:35.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:35 smithi099 bash[16328]: audit 2024-01-27T23:58:34.124208+0000 mgr.smithi099.hzjdah (mgr.14182) 1534 : audit [DBG] from='client.15788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:35.822 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:36.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:36 smithi142 bash[20347]: cluster 2024-01-27T23:58:36.070632+0000 mgr.smithi099.hzjdah (mgr.14182) 1535 : cluster [DBG] pgmap v994: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:58:36.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:36 smithi099 bash[16328]: cluster 2024-01-27T23:58:36.070632+0000 mgr.smithi099.hzjdah (mgr.14182) 1535 : cluster [DBG] pgmap v994: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:58:39.070 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:39.071 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:39.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:39 smithi142 bash[20347]: cluster 2024-01-27T23:58:38.072618+0000 mgr.smithi099.hzjdah (mgr.14182) 1536 : 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-01-27T23:58:39.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:39 smithi099 bash[16328]: cluster 2024-01-27T23:58:38.072618+0000 mgr.smithi099.hzjdah (mgr.14182) 1536 : 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-01-27T23:58:39.665 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:40.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:40 smithi142 bash[20347]: audit 2024-01-27T23:58:39.064839+0000 mgr.smithi099.hzjdah (mgr.14182) 1537 : audit [DBG] from='client.15792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:40.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:40 smithi099 bash[16328]: audit 2024-01-27T23:58:39.064839+0000 mgr.smithi099.hzjdah (mgr.14182) 1537 : audit [DBG] from='client.15792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:40.667 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:41.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:41 smithi142 bash[20347]: cluster 2024-01-27T23:58:40.074194+0000 mgr.smithi099.hzjdah (mgr.14182) 1538 : 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-01-27T23:58:41.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:41 smithi099 bash[16328]: cluster 2024-01-27T23:58:40.074194+0000 mgr.smithi099.hzjdah (mgr.14182) 1538 : 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-01-27T23:58:43.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:43 smithi142 bash[20347]: cluster 2024-01-27T23:58:42.076027+0000 mgr.smithi099.hzjdah (mgr.14182) 1539 : 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-01-27T23:58:43.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:43 smithi099 bash[16328]: cluster 2024-01-27T23:58:42.076027+0000 mgr.smithi099.hzjdah (mgr.14182) 1539 : 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-01-27T23:58:44.069 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:44.069 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:44.672 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:45 smithi142 bash[20347]: audit 2024-01-27T23:58:44.057367+0000 mgr.smithi099.hzjdah (mgr.14182) 1540 : audit [DBG] from='client.15796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:45.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:45 smithi142 bash[20347]: cluster 2024-01-27T23:58:44.077626+0000 mgr.smithi099.hzjdah (mgr.14182) 1541 : cluster [DBG] pgmap v998: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:45 smithi099 bash[16328]: audit 2024-01-27T23:58:44.057367+0000 mgr.smithi099.hzjdah (mgr.14182) 1540 : audit [DBG] from='client.15796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:45.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:45 smithi099 bash[16328]: cluster 2024-01-27T23:58:44.077626+0000 mgr.smithi099.hzjdah (mgr.14182) 1541 : cluster [DBG] pgmap v998: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:45.672 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:47.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:47 smithi099 bash[16328]: cluster 2024-01-27T23:58:46.079147+0000 mgr.smithi099.hzjdah (mgr.14182) 1542 : cluster [DBG] pgmap v999: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:58:47.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:47 smithi142 bash[20347]: cluster 2024-01-27T23:58:46.079147+0000 mgr.smithi099.hzjdah (mgr.14182) 1542 : cluster [DBG] pgmap v999: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:58:48.816 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:48.817 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:49.440 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:49 smithi099 bash[16328]: cluster 2024-01-27T23:58:48.081173+0000 mgr.smithi099.hzjdah (mgr.14182) 1543 : 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-01-27T23:58:49.441 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:49.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:49 smithi142 bash[20347]: cluster 2024-01-27T23:58:48.081173+0000 mgr.smithi099.hzjdah (mgr.14182) 1543 : 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-01-27T23:58:50.442 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:50.454 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:50 smithi099 bash[16328]: audit 2024-01-27T23:58:48.809123+0000 mgr.smithi099.hzjdah (mgr.14182) 1544 : audit [DBG] from='client.15800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:50.454 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:50 smithi099 bash[16328]: cluster 2024-01-27T23:58:50.082689+0000 mgr.smithi099.hzjdah (mgr.14182) 1545 : 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-01-27T23:58:50.556 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:50 smithi142 bash[20347]: audit 2024-01-27T23:58:48.809123+0000 mgr.smithi099.hzjdah (mgr.14182) 1544 : audit [DBG] from='client.15800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:50.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:50 smithi142 bash[20347]: cluster 2024-01-27T23:58:50.082689+0000 mgr.smithi099.hzjdah (mgr.14182) 1545 : 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-01-27T23:58:53.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:53 smithi142 bash[20347]: cluster 2024-01-27T23:58:52.084315+0000 mgr.smithi099.hzjdah (mgr.14182) 1546 : 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-01-27T23:58:53.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:53 smithi099 bash[16328]: cluster 2024-01-27T23:58:52.084315+0000 mgr.smithi099.hzjdah (mgr.14182) 1546 : 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-01-27T23:58:53.650 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:53.650 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:54.357 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:55.358 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:58:55.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:55 smithi142 bash[20347]: audit 2024-01-27T23:58:53.640196+0000 mgr.smithi099.hzjdah (mgr.14182) 1547 : audit [DBG] from='client.15804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:55.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:55 smithi142 bash[20347]: cluster 2024-01-27T23:58:54.086316+0000 mgr.smithi099.hzjdah (mgr.14182) 1548 : cluster [DBG] pgmap v1003: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:55.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:55 smithi099 bash[16328]: audit 2024-01-27T23:58:53.640196+0000 mgr.smithi099.hzjdah (mgr.14182) 1547 : audit [DBG] from='client.15804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:58:55.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:55 smithi099 bash[16328]: cluster 2024-01-27T23:58:54.086316+0000 mgr.smithi099.hzjdah (mgr.14182) 1548 : cluster [DBG] pgmap v1003: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:58:57.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:57 smithi142 bash[20347]: cluster 2024-01-27T23:58:56.087799+0000 mgr.smithi099.hzjdah (mgr.14182) 1549 : cluster [DBG] pgmap v1004: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:58:57.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:57 smithi099 bash[16328]: cluster 2024-01-27T23:58:56.087799+0000 mgr.smithi099.hzjdah (mgr.14182) 1549 : cluster [DBG] pgmap v1004: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:58:58.630 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:58:58.630 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:58:59.288 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:58:59.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:58:59 smithi142 bash[20347]: cluster 2024-01-27T23:58:58.089985+0000 mgr.smithi099.hzjdah (mgr.14182) 1550 : 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-01-27T23:58:59.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:58:59 smithi099 bash[16328]: cluster 2024-01-27T23:58:58.089985+0000 mgr.smithi099.hzjdah (mgr.14182) 1550 : 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-01-27T23:59:00.288 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:59:00.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:00 smithi142 bash[20347]: audit 2024-01-27T23:58:58.619461+0000 mgr.smithi099.hzjdah (mgr.14182) 1551 : audit [DBG] from='client.15808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:00.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:00 smithi099 bash[16328]: audit 2024-01-27T23:58:58.619461+0000 mgr.smithi099.hzjdah (mgr.14182) 1551 : audit [DBG] from='client.15808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:01.450 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:01 smithi099 bash[16328]: cluster 2024-01-27T23:59:00.091563+0000 mgr.smithi099.hzjdah (mgr.14182) 1552 : 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-01-27T23:59:01.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:01 smithi142 bash[20347]: cluster 2024-01-27T23:59:00.091563+0000 mgr.smithi099.hzjdah (mgr.14182) 1552 : 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-01-27T23:59:02.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:02 smithi142 bash[20347]: cluster 2024-01-27T23:59:02.093794+0000 mgr.smithi099.hzjdah (mgr.14182) 1553 : 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-01-27T23:59:02.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:02 smithi099 bash[16328]: cluster 2024-01-27T23:59:02.093794+0000 mgr.smithi099.hzjdah (mgr.14182) 1553 : 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-01-27T23:59:03.661 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:59:03.661 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:59:04.281 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:59:05.282 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:59:05.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:05 smithi142 bash[20347]: audit 2024-01-27T23:59:03.652948+0000 mgr.smithi099.hzjdah (mgr.14182) 1554 : audit [DBG] from='client.15812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:05.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:05 smithi142 bash[20347]: cluster 2024-01-27T23:59:04.095470+0000 mgr.smithi099.hzjdah (mgr.14182) 1555 : cluster [DBG] pgmap v1008: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:05.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:05 smithi099 bash[16328]: audit 2024-01-27T23:59:03.652948+0000 mgr.smithi099.hzjdah (mgr.14182) 1554 : audit [DBG] from='client.15812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:05.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:05 smithi099 bash[16328]: cluster 2024-01-27T23:59:04.095470+0000 mgr.smithi099.hzjdah (mgr.14182) 1555 : cluster [DBG] pgmap v1008: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:07.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:07 smithi142 bash[20347]: cluster 2024-01-27T23:59:06.097012+0000 mgr.smithi099.hzjdah (mgr.14182) 1556 : cluster [DBG] pgmap v1009: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:59:07.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:07 smithi099 bash[16328]: cluster 2024-01-27T23:59:06.097012+0000 mgr.smithi099.hzjdah (mgr.14182) 1556 : cluster [DBG] pgmap v1009: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:59:08.587 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:59:08.587 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:59:09.302 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:59:09.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:09 smithi142 bash[20347]: cluster 2024-01-27T23:59:08.099006+0000 mgr.smithi099.hzjdah (mgr.14182) 1557 : cluster [DBG] pgmap v1010: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:09.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:09 smithi099 bash[16328]: cluster 2024-01-27T23:59:08.099006+0000 mgr.smithi099.hzjdah (mgr.14182) 1557 : cluster [DBG] pgmap v1010: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:10.303 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:59:10.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:10 smithi142 bash[20347]: audit 2024-01-27T23:59:08.581556+0000 mgr.smithi099.hzjdah (mgr.14182) 1558 : audit [DBG] from='client.15816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:10.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:10 smithi099 bash[16328]: audit 2024-01-27T23:59:08.581556+0000 mgr.smithi099.hzjdah (mgr.14182) 1558 : audit [DBG] from='client.15816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:11.469 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:11 smithi099 bash[16328]: cluster 2024-01-27T23:59:10.100516+0000 mgr.smithi099.hzjdah (mgr.14182) 1559 : cluster [DBG] pgmap v1011: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:11.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:11 smithi142 bash[20347]: cluster 2024-01-27T23:59:10.100516+0000 mgr.smithi099.hzjdah (mgr.14182) 1559 : cluster [DBG] pgmap v1011: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:12.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:12 smithi142 bash[20347]: cluster 2024-01-27T23:59:12.102364+0000 mgr.smithi099.hzjdah (mgr.14182) 1560 : cluster [DBG] pgmap v1012: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:12.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:12 smithi099 bash[16328]: cluster 2024-01-27T23:59:12.102364+0000 mgr.smithi099.hzjdah (mgr.14182) 1560 : cluster [DBG] pgmap v1012: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:13.613 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:59:13.613 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:59:14.267 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:59:15.268 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:59:15.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:15 smithi142 bash[20347]: audit 2024-01-27T23:59:13.607326+0000 mgr.smithi099.hzjdah (mgr.14182) 1561 : audit [DBG] from='client.15820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:15.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:15 smithi142 bash[20347]: cluster 2024-01-27T23:59:14.104135+0000 mgr.smithi099.hzjdah (mgr.14182) 1562 : cluster [DBG] pgmap v1013: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:15.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:15 smithi099 bash[16328]: audit 2024-01-27T23:59:13.607326+0000 mgr.smithi099.hzjdah (mgr.14182) 1561 : audit [DBG] from='client.15820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:15.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:15 smithi099 bash[16328]: cluster 2024-01-27T23:59:14.104135+0000 mgr.smithi099.hzjdah (mgr.14182) 1562 : cluster [DBG] pgmap v1013: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:17.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:17 smithi142 bash[20347]: cluster 2024-01-27T23:59:16.105760+0000 mgr.smithi099.hzjdah (mgr.14182) 1563 : cluster [DBG] pgmap v1014: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:59:17.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:17 smithi099 bash[16328]: cluster 2024-01-27T23:59:16.105760+0000 mgr.smithi099.hzjdah (mgr.14182) 1563 : cluster [DBG] pgmap v1014: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:59:18.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:18 smithi099 bash[16328]: cluster 2024-01-27T23:59:18.107770+0000 mgr.smithi099.hzjdah (mgr.14182) 1564 : cluster [DBG] pgmap v1015: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:18.411 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:59:18.411 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:59:18.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:18 smithi142 bash[20347]: cluster 2024-01-27T23:59:18.107770+0000 mgr.smithi099.hzjdah (mgr.14182) 1564 : cluster [DBG] pgmap v1015: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:19.045 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:59:19.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:19 smithi099 bash[16328]: audit 2024-01-27T23:59:18.398189+0000 mgr.smithi099.hzjdah (mgr.14182) 1565 : audit [DBG] from='client.15824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:19.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:19 smithi142 bash[20347]: audit 2024-01-27T23:59:18.398189+0000 mgr.smithi099.hzjdah (mgr.14182) 1565 : audit [DBG] from='client.15824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:20.047 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:59:20.334 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:20 smithi099 bash[16328]: audit 2024-01-27T23:59:20.059420+0000 mon.smithi099 (mon.0) 1030 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:59:20.335 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:20 smithi099 bash[16328]: cluster 2024-01-27T23:59:20.109393+0000 mgr.smithi099.hzjdah (mgr.14182) 1566 : cluster [DBG] pgmap v1016: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:20.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:20 smithi142 bash[20347]: audit 2024-01-27T23:59:20.059420+0000 mon.smithi099 (mon.0) 1030 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:59:20.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:20 smithi142 bash[20347]: cluster 2024-01-27T23:59:20.109393+0000 mgr.smithi099.hzjdah (mgr.14182) 1566 : cluster [DBG] pgmap v1016: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:59:21.411 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:21 smithi099 bash[16328]: audit 2024-01-27T23:59:20.370160+0000 mon.smithi099 (mon.0) 1031 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:59:21.411 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:21 smithi099 bash[16328]: audit 2024-01-27T23:59:20.659396+0000 mon.smithi099 (mon.0) 1032 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:59:21.411 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:21 smithi099 bash[16328]: audit 2024-01-27T23:59:20.661698+0000 mon.smithi099 (mon.0) 1033 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:59:21.411 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:21 smithi099 bash[16328]: audit 2024-01-27T23:59:20.670690+0000 mon.smithi099 (mon.0) 1034 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:59:21.411 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:21 smithi099 bash[16328]: cluster 2024-01-27T23:59:20.671902+0000 mgr.smithi099.hzjdah (mgr.14182) 1567 : cluster [DBG] pgmap v1017: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:59:21.411 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:21 smithi099 bash[16328]: audit 2024-01-27T23:59:20.678773+0000 mon.smithi099 (mon.0) 1035 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:59:21.411 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:21 smithi099 bash[16328]: audit 2024-01-27T23:59:20.693700+0000 mon.smithi099 (mon.0) 1036 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:59:21.411 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:21 smithi099 bash[16328]: cephadm 2024-01-27T23:59:20.699566+0000 mgr.smithi099.hzjdah (mgr.14182) 1568 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.faxgey on smithi142 2024-01-27T23:59:21.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:21 smithi142 bash[20347]: audit 2024-01-27T23:59:20.370160+0000 mon.smithi099 (mon.0) 1031 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:59:21.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:21 smithi142 bash[20347]: audit 2024-01-27T23:59:20.659396+0000 mon.smithi099 (mon.0) 1032 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:59:21.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:21 smithi142 bash[20347]: audit 2024-01-27T23:59:20.661698+0000 mon.smithi099 (mon.0) 1033 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:59:21.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:21 smithi142 bash[20347]: audit 2024-01-27T23:59:20.670690+0000 mon.smithi099 (mon.0) 1034 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:59:21.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:21 smithi142 bash[20347]: cluster 2024-01-27T23:59:20.671902+0000 mgr.smithi099.hzjdah (mgr.14182) 1567 : cluster [DBG] pgmap v1017: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:59:21.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:21 smithi142 bash[20347]: audit 2024-01-27T23:59:20.678773+0000 mon.smithi099 (mon.0) 1035 : audit [DBG] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:59:21.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:21 smithi142 bash[20347]: audit 2024-01-27T23:59:20.693700+0000 mon.smithi099 (mon.0) 1036 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:59:21.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:21 smithi142 bash[20347]: cephadm 2024-01-27T23:59:20.699566+0000 mgr.smithi099.hzjdah (mgr.14182) 1568 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.faxgey on smithi142 2024-01-27T23:59:22.769 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:22 smithi099 bash[16328]: cluster 2024-01-27T23:59:21.667215+0000 mon.smithi099 (mon.0) 1037 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:59:22.770 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:22 smithi099 bash[16328]: cluster 2024-01-27T23:59:21.667291+0000 mon.smithi099 (mon.0) 1038 : cluster [INF] Cluster is now healthy 2024-01-27T23:59:22.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:22 smithi142 bash[20347]: cluster 2024-01-27T23:59:21.667215+0000 mon.smithi099 (mon.0) 1037 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:59:22.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:22 smithi142 bash[20347]: cluster 2024-01-27T23:59:21.667291+0000 mon.smithi099 (mon.0) 1038 : cluster [INF] Cluster is now healthy 2024-01-27T23:59:23.208 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:59:23.208 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:57:06.067668Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.wwjawk on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:59:23.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:23 smithi099 bash[16328]: cluster 2024-01-27T23:59:22.673691+0000 mgr.smithi099.hzjdah (mgr.14182) 1569 : cluster [DBG] pgmap v1018: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:59:23.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:23 smithi142 bash[20347]: cluster 2024-01-27T23:59:22.673691+0000 mgr.smithi099.hzjdah (mgr.14182) 1569 : cluster [DBG] pgmap v1018: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:59:23.826 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:59:24.497 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:24 smithi142 bash[20347]: audit 2024-01-27T23:59:23.197468+0000 mgr.smithi099.hzjdah (mgr.14182) 1570 : audit [DBG] from='client.15828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:24.827 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:59:24.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:24 smithi099 bash[16328]: audit 2024-01-27T23:59:23.197468+0000 mgr.smithi099.hzjdah (mgr.14182) 1570 : audit [DBG] from='client.15828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:25.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: cephadm 2024-01-27T23:59:24.568052+0000 mgr.smithi099.hzjdah (mgr.14182) 1571 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.faxgey ... 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:59:25.808 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.faxgey ... 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:25.809 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: cephadm 2024-01-27T23:59:24.568547+0000 mgr.smithi099.hzjdah (mgr.14182) 1572 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: audit 2024-01-27T23:59:24.569270+0000 mon.smithi099 (mon.0) 1039 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.faxgey"}]: dispatch 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: cephadm 2024-01-27T23:59:24.571210+0000 mgr.smithi099.hzjdah (mgr.14182) 1573 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.faxgey on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi142.faxgey ... 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:25.810 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:25.811 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.811 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: cephadm 2024-01-27T23:59:24.576427+0000 mgr.smithi099.hzjdah (mgr.14182) 1574 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.dpjujh on smithi099 2024-01-27T23:59:25.811 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:25 smithi142 bash[20347]: cluster 2024-01-27T23:59:24.674908+0000 mgr.smithi099.hzjdah (mgr.14182) 1575 : cluster [DBG] pgmap v1019: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2024-01-27T23:59:25.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: cephadm 2024-01-27T23:59:24.568052+0000 mgr.smithi099.hzjdah (mgr.14182) 1571 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:25.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:25.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.faxgey ... 2024-01-27T23:59:25.835 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.836 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:25.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.faxgey ... 2024-01-27T23:59:25.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:25.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:25.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:25.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: cephadm 2024-01-27T23:59:24.568547+0000 mgr.smithi099.hzjdah (mgr.14182) 1572 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.837 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: audit 2024-01-27T23:59:24.569270+0000 mon.smithi099 (mon.0) 1039 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.faxgey"}]: dispatch 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: cephadm 2024-01-27T23:59:24.571210+0000 mgr.smithi099.hzjdah (mgr.14182) 1573 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.faxgey on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi142.faxgey ... 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: cephadm 2024-01-27T23:59:24.576427+0000 mgr.smithi099.hzjdah (mgr.14182) 1574 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi099.dpjujh on smithi099 2024-01-27T23:59:25.838 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:25 smithi099 bash[16328]: cluster 2024-01-27T23:59:24.674908+0000 mgr.smithi099.hzjdah (mgr.14182) 1575 : cluster [DBG] pgmap v1019: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2024-01-27T23:59:26.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:26 smithi142 bash[20347]: audit 2024-01-27T23:59:25.410856+0000 mon.smithi099 (mon.0) 1040 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:59:26.834 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:26 smithi099 bash[16328]: audit 2024-01-27T23:59:25.410856+0000 mon.smithi099 (mon.0) 1040 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:59:27.742 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:27 smithi099 bash[16328]: cluster 2024-01-27T23:59:26.676250+0000 mgr.smithi099.hzjdah (mgr.14182) 1576 : cluster [DBG] pgmap v1020: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:59:27.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:27 smithi142 bash[20347]: cluster 2024-01-27T23:59:26.676250+0000 mgr.smithi099.hzjdah (mgr.14182) 1576 : cluster [DBG] pgmap v1020: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-01-27T23:59:28.159 INFO:teuthology.orchestra.run.smithi099.stdout: 2024-01-27T23:59:28.159 INFO:teuthology.orchestra.run.smithi099.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:26:45.599659Z", "last_refresh": "2024-01-27T23:56:57.876349Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:26:37.627436Z", "last_refresh": "2024-01-27T23:56:57.876497Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:26:41.616920Z", "last_refresh": "2024-01-27T23:56:57.876641Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:58:16.112803Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nkxhyj on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-nkxhyj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.nkxhyj\nDeploy daemon haproxy.nfs.foo.smithi142.nkxhyj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.045549Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi099.lyxeyt on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-lyxeyt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.lyxeyt\nDeploy daemon haproxy.nfs.foo.smithi099.lyxeyt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:58:20.050995Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pvwqcq on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:58:20.054948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi099.yfafia on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:59:24.570942Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.faxgey on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi142-faxgey\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi142.faxgey\nDeploy daemon haproxy.nfs.foo.smithi142.faxgey ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.99/16"}, "status": {"created": "2024-01-27T23:34:00.550823Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.99/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:26:35.621085Z", "last_refresh": "2024-01-27T23:56:57.876182Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:05.874870Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi099:172.21.15.99=smithi099", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:28:05.868916Z", "last_refresh": "2024-01-27T23:56:57.875935Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:34:00.548971Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:34:00.535674Z", "last_refresh": "2024-01-27T23:56:57.877720Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:26:43.583273Z", "last_refresh": "2024-01-27T23:56:57.876794Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:28:34.086861Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:28:34.080257Z", "last_refresh": "2024-01-27T23:56:57.876939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:26:39.587167Z", "last_refresh": "2024-01-27T23:58:11.932995Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:33:54.723600Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:34:09.512008Z", "last_refresh": "2024-01-27T23:56:57.877573Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:59:28.584 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:28 smithi099 bash[16328]: audit 2024-01-27T23:59:28.153196+0000 mgr.smithi099.hzjdah (mgr.14182) 1577 : audit [DBG] from='client.15832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:28.585 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:28 smithi099 bash[16328]: audit 2024-01-27T23:59:28.406125+0000 mon.smithi099 (mon.0) 1041 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.dpjujh"}]: dispatch 2024-01-27T23:59:28.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:28 smithi142 bash[20347]: audit 2024-01-27T23:59:28.153196+0000 mgr.smithi099.hzjdah (mgr.14182) 1577 : audit [DBG] from='client.15832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:59:28.807 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:28 smithi142 bash[20347]: audit 2024-01-27T23:59:28.406125+0000 mon.smithi099 (mon.0) 1041 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi099.dpjujh"}]: dispatch 2024-01-27T23:59:28.945 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:59:28.945 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_585bdf827237450fb80df4a856eba434a64948fa/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2024-01-27T23:59:29.191 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=494ed68e431d4888a4471f9e6e3242d5 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_585bdf827237450fb80df4a856eba434a64948fa/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2024-01-27T23:59:29.193 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-01-27T23:59:29.205 INFO:tasks.vip:Removing 10.0.15.99 (and any VIPs) on smithi099.front.sepia.ceph.com iface enp3s0f1... 2024-01-27T23:59:29.206 DEBUG:teuthology.orchestra.run.smithi099:> sudo ip addr del 10.0.15.99/16 dev enp3s0f1 2024-01-27T23:59:29.227 DEBUG:teuthology.orchestra.run.smithi099:> sudo ip addr del 10.0.31.99/16 dev enp3s0f1 2024-01-27T23:59:29.283 INFO:teuthology.orchestra.run.smithi099.stderr:RTNETLINK answers: Cannot assign requested address 2024-01-27T23:59:29.284 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-01-27T23:59:29.284 INFO:tasks.vip:Removing 10.0.15.142 (and any VIPs) on smithi142.front.sepia.ceph.com iface enp3s0f1... 2024-01-27T23:59:29.284 DEBUG:teuthology.orchestra.run.smithi142:> sudo ip addr del 10.0.15.142/16 dev enp3s0f1 2024-01-27T23:59:29.304 DEBUG:teuthology.orchestra.run.smithi142:> sudo ip addr del 10.0.31.99/16 dev enp3s0f1 2024-01-27T23:59:29.360 INFO:teuthology.orchestra.run.smithi142.stderr:RTNETLINK answers: Cannot assign requested address 2024-01-27T23:59:29.360 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-01-27T23:59:29.361 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-01-27T23:59:29.371 INFO:tasks.cephadm:Teardown begin 2024-01-27T23:59:29.371 DEBUG:teuthology.orchestra.run.smithi099:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:59:29.385 DEBUG:teuthology.orchestra.run.smithi142:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:59:29.418 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-01-27T23:59:29.418 DEBUG:teuthology.orchestra.run.smithi099:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-01-27T23:59:29.435 DEBUG:teuthology.orchestra.run.smithi142:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-01-27T23:59:29.469 INFO:tasks.cephadm:Stopping all daemons... 2024-01-27T23:59:29.469 INFO:tasks.cephadm.mon.smithi099:Stopping mon.smithi099... 2024-01-27T23:59:29.469 DEBUG:teuthology.orchestra.run.smithi099:> sudo systemctl stop ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mon.smithi099 2024-01-27T23:59:29.488 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: cephadm 2024-01-27T23:59:28.404892+0000 mgr.smithi099.hzjdah (mgr.14182) 1578 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.488 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:29.489 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.489 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.489 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:29.489 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.489 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.dpjujh ... 2024-01-27T23:59:29.489 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.489 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:29.489 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:29.490 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:29.490 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.490 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: Traceback (most recent call last): 2024-01-27T23:59:29.490 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:59:29.490 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: yield (conn, connr) 2024-01-27T23:59:29.490 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:59:29.490 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: code, '\n'.join(err))) 2024-01-27T23:59:29.490 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.490 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:29.490 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.491 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.491 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:29.491 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.491 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.dpjujh ... 2024-01-27T23:59:29.491 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.491 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:29.491 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:29.491 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:29.492 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.492 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: cephadm 2024-01-27T23:59:28.405408+0000 mgr.smithi099.hzjdah (mgr.14182) 1579 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.492 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: cephadm 2024-01-27T23:59:28.407471+0000 mgr.smithi099.hzjdah (mgr.14182) 1580 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.dpjujh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.492 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:29.492 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.492 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.492 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stdout 2024-01-27T23:59:29.492 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.493 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: Deploy daemon haproxy.nfs.foo.smithi099.dpjujh ... 2024-01-27T23:59:29.493 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.493 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:29.493 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:29.493 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:29.493 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.493 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: cephadm 2024-01-27T23:59:28.411897+0000 mgr.smithi099.hzjdah (mgr.14182) 1581 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.bgynko on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:59:29.493 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: cephadm 2024-01-27T23:59:28.416060+0000 mgr.smithi099.hzjdah (mgr.14182) 1582 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.veywhi on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:59:29.493 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: cluster 2024-01-27T23:59:28.417141+0000 mgr.smithi099.hzjdah (mgr.14182) 1583 : cluster [DBG] pgmap v1021: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:59:29.494 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: cluster 2024-01-27T23:59:28.420924+0000 mon.smithi099 (mon.0) 1042 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:59:29.494 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: audit 2024-01-27T23:59:29.372516+0000 mon.smithi099 (mon.0) 1043 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:59:29.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: cephadm 2024-01-27T23:59:28.404892+0000 mgr.smithi099.hzjdah (mgr.14182) 1578 : 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:29.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:29.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.558 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.dpjujh ... 2024-01-27T23:59:29.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:29.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:29.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:29.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: Traceback (most recent call last): 2024-01-27T23:59:29.559 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:59:29.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: yield (conn, connr) 2024-01-27T23:59:29.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:59:29.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: code, '\n'.join(err))) 2024-01-27T23:59:29.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: 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-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:29.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.560 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.561 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:29.561 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.561 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.dpjujh ... 2024-01-27T23:59:29.561 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.561 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:29.561 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:29.561 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:29.561 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.562 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: cephadm 2024-01-27T23:59:28.405408+0000 mgr.smithi099.hzjdah (mgr.14182) 1579 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.562 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: cephadm 2024-01-27T23:59:28.407471+0000 mgr.smithi099.hzjdah (mgr.14182) 1580 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi099.dpjujh on smithi099: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.562 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:29.562 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi099-dpjujh 2024-01-27T23:59:29.562 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.562 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stdout 2024-01-27T23:59:29.562 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: /usr/bin/docker: stderr Error: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi099.dpjujh 2024-01-27T23:59:29.562 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: Deploy daemon haproxy.nfs.foo.smithi099.dpjujh ... 2024-01-27T23:59:29.563 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.563 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-01-27T23:59:29.563 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-01-27T23:59:29.563 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: stat: stderr See 'docker run --help'. 2024-01-27T23:59:29.563 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi099 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:59:29.563 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: cephadm 2024-01-27T23:59:28.411897+0000 mgr.smithi099.hzjdah (mgr.14182) 1581 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.bgynko on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:59:29.563 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: cephadm 2024-01-27T23:59:28.416060+0000 mgr.smithi099.hzjdah (mgr.14182) 1582 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi099.veywhi on smithi099: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:59:29.563 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: cluster 2024-01-27T23:59:28.417141+0000 mgr.smithi099.hzjdah (mgr.14182) 1583 : cluster [DBG] pgmap v1021: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:59:29.564 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: cluster 2024-01-27T23:59:28.420924+0000 mon.smithi099 (mon.0) 1042 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:59:29.564 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:29 smithi142 bash[20347]: audit 2024-01-27T23:59:29.372516+0000 mon.smithi099 (mon.0) 1043 : audit [INF] from='mgr.14182 172.21.15.99:0/1847769329' entity='mgr.smithi099.hzjdah' 2024-01-27T23:59:29.819 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 systemd[1]: Stopping Ceph mon.smithi099 for 54223e96-bd6b-11ee-95b2-87774f69a715... 2024-01-27T23:59:29.820 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[111388]: Error response from daemon: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-mon.smithi099 2024-01-27T23:59:29.820 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: debug 2024-01-27T23:59:29.681+0000 7f704c380700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi099 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-01-27T23:59:29.820 INFO:journalctl@ceph.mon.smithi099.smithi099.stdout:Jan 27 23:59:29 smithi099 bash[16328]: debug 2024-01-27T23:59:29.681+0000 7f704c380700 -1 mon.smithi099@0(leader) e2 *** Got Signal Terminated *** 2024-01-27T23:59:30.664 DEBUG:teuthology.orchestra.run.smithi099:> sudo pkill -f 'journalctl -f -n 0 -u ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mon.smithi099.service' 2024-01-27T23:59:30.747 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-01-27T23:59:30.747 INFO:tasks.cephadm.mon.smithi099:Stopped mon.smithi099 2024-01-27T23:59:30.747 INFO:tasks.cephadm.mon.smithi142:Stopping mon.smithi142... 2024-01-27T23:59:30.747 DEBUG:teuthology.orchestra.run.smithi142:> sudo systemctl stop ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mon.smithi142 2024-01-27T23:59:31.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:30 smithi142 systemd[1]: Stopping Ceph mon.smithi142 for 54223e96-bd6b-11ee-95b2-87774f69a715... 2024-01-27T23:59:31.057 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:30 smithi142 bash[46853]: Error response from daemon: No such container: ceph-54223e96-bd6b-11ee-95b2-87774f69a715-mon.smithi142 2024-01-27T23:59:31.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:31 smithi142 bash[20347]: debug 2024-01-27T23:59:31.071+0000 7fed4eb00700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi142 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-01-27T23:59:31.557 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Jan 27 23:59:31 smithi142 bash[20347]: debug 2024-01-27T23:59:31.071+0000 7fed4eb00700 -1 mon.smithi142@1(peon) e2 *** Got Signal Terminated *** 2024-01-27T23:59:32.030 DEBUG:teuthology.orchestra.run.smithi142:> sudo pkill -f 'journalctl -f -n 0 -u ceph-54223e96-bd6b-11ee-95b2-87774f69a715@mon.smithi142.service' 2024-01-27T23:59:32.081 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-01-27T23:59:32.081 INFO:tasks.cephadm.mon.smithi142:Stopped mon.smithi142 2024-01-27T23:59:32.082 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 --force --keep-logs 2024-01-28T00:00:36.484 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 --force --keep-logs 2024-01-28T00:01:29.159 DEBUG:teuthology.orchestra.run.smithi099:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-28T00:01:29.175 DEBUG:teuthology.orchestra.run.smithi142:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-28T00:01:29.189 INFO:tasks.cephadm:Archiving crash dumps... 2024-01-28T00:01:29.191 DEBUG:teuthology.misc:Transferring archived files from smithi099:/var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131/remote/ubuntu@smithi099.front.sepia.ceph.com/crash 2024-01-28T00:01:29.191 DEBUG:teuthology.orchestra.run.smithi099:> sudo tar c -f - -C /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/crash -- . 2024-01-28T00:01:29.231 INFO:teuthology.orchestra.run.smithi099.stderr:tar: /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/crash: Cannot open: No such file or directory 2024-01-28T00:01:29.231 INFO:teuthology.orchestra.run.smithi099.stderr:tar: Error is not recoverable: exiting now 2024-01-28T00:01:29.235 DEBUG:teuthology.misc:Transferring archived files from smithi142:/var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131/remote/ubuntu@smithi142.front.sepia.ceph.com/crash 2024-01-28T00:01:29.235 DEBUG:teuthology.orchestra.run.smithi142:> sudo tar c -f - -C /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/crash -- . 2024-01-28T00:01:29.249 INFO:teuthology.orchestra.run.smithi142.stderr:tar: /var/lib/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/crash: Cannot open: No such file or directory 2024-01-28T00:01:29.249 INFO:teuthology.orchestra.run.smithi142.stderr:tar: Error is not recoverable: exiting now 2024-01-28T00:01:29.251 INFO:tasks.cephadm:Checking cluster log for badness... 2024-01-28T00:01:29.251 DEBUG:teuthology.orchestra.run.smithi099:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-01-28T00:01:29.288 INFO:teuthology.orchestra.run.smithi099.stderr:grep: /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph.log: No such file or directory 2024-01-28T00:01:29.290 INFO:tasks.cephadm:Compressing logs... 2024-01-28T00:01:29.290 DEBUG:teuthology.orchestra.run.smithi099:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-01-28T00:01:29.335 DEBUG:teuthology.orchestra.run.smithi142:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-01-28T00:01:29.347 INFO:teuthology.orchestra.run.smithi099.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-01-28T00:01:29.348 INFO:teuthology.orchestra.run.smithi099.stderr:gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-volume.log 2024-01-28T00:01:29.348 INFO:teuthology.orchestra.run.smithi099.stderr:gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi099.log 2024-01-28T00:01:29.349 INFO:teuthology.orchestra.run.smithi099.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi099.zjroih.log 2024-01-28T00:01:29.349 INFO:teuthology.orchestra.run.smithi099.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi099.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi099.hzjdah.log 2024-01-28T00:01:29.350 INFO:teuthology.orchestra.run.smithi142.stderr:find: '/var/log/rbd-target-api'gzip -5 --verbose -- : No such file or directory/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.6.log 2024-01-28T00:01:29.350 INFO:teuthology.orchestra.run.smithi142.stderr: 2024-01-28T00:01:29.352 INFO:teuthology.orchestra.run.smithi099.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi099.zjroih.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.7.log 2024-01-28T00:01:29.352 INFO:teuthology.orchestra.run.smithi099.stderr: 71.2% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi099.zjroih.log.gz 2024-01-28T00:01:29.352 INFO:teuthology.orchestra.run.smithi099.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi099.hzjdah.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.1.log 2024-01-28T00:01:29.352 INFO:teuthology.orchestra.run.smithi099.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.5.log 2024-01-28T00:01:29.353 INFO:teuthology.orchestra.run.smithi142.stderr:gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-volume.log 2024-01-28T00:01:29.353 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi142.nlkoaq.log 2024-01-28T00:01:29.353 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.0.log 2024-01-28T00:01:29.354 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi142.nlkoaq.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi142.rzlqdl.log 2024-01-28T00:01:29.354 INFO:teuthology.orchestra.run.smithi142.stderr:gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.2.log 2024-01-28T00:01:29.356 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.0.log: /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi142.rzlqdl.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.4.log 2024-01-28T00:01:29.356 INFO:teuthology.orchestra.run.smithi142.stderr: 71.6% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi142.rzlqdl.log.gz 2024-01-28T00:01:29.356 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi142.log 2024-01-28T00:01:29.356 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-01-28T00:01:29.356 INFO:teuthology.orchestra.run.smithi099.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.3.log 2024-01-28T00:01:29.357 INFO:teuthology.orchestra.run.smithi099.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-01-28T00:01:29.360 INFO:teuthology.orchestra.run.smithi099.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.3.log: /var/log/ceph/cephadm.log: 92.6% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-volume.log.gz 2024-01-28T00:01:29.365 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi142.log: /var/log/ceph/cephadm.log: 92.6% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-volume.log.gz 2024-01-28T00:01:29.365 INFO:teuthology.orchestra.run.smithi142.stderr: 90.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-01-28T00:01:29.367 INFO:teuthology.orchestra.run.smithi142.stderr: 93.5% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi142.nlkoaq.log.gz 2024-01-28T00:01:29.377 INFO:teuthology.orchestra.run.smithi099.stderr: 93.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-01-28T00:01:29.637 INFO:teuthology.orchestra.run.smithi099.stderr: 89.6% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi099.hzjdah.log.gz 2024-01-28T00:01:29.645 INFO:teuthology.orchestra.run.smithi142.stderr: 92.9% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi142.log.gz 2024-01-28T00:01:30.354 INFO:teuthology.orchestra.run.smithi099.stderr: 90.3% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi099.log.gz 2024-01-28T00:01:30.420 INFO:teuthology.orchestra.run.smithi099.stderr: 93.3% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.1.log.gz 2024-01-28T00:01:30.487 INFO:teuthology.orchestra.run.smithi142.stderr: 93.3% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.2.log.gz 2024-01-28T00:01:30.509 INFO:teuthology.orchestra.run.smithi099.stderr: 93.4% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.5.log.gz 2024-01-28T00:01:30.532 INFO:teuthology.orchestra.run.smithi142.stderr: 93.7% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.4.log.gz 2024-01-28T00:01:30.597 INFO:teuthology.orchestra.run.smithi142.stderr: 93.6% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.0.log.gz 2024-01-28T00:01:30.629 INFO:teuthology.orchestra.run.smithi142.stderr: 93.3% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.6.log.gz 2024-01-28T00:01:30.630 INFO:teuthology.orchestra.run.smithi142.stderr: 2024-01-28T00:01:30.631 INFO:teuthology.orchestra.run.smithi142.stderr:real 0m1.291s 2024-01-28T00:01:30.631 INFO:teuthology.orchestra.run.smithi142.stderr:user 0m4.997s 2024-01-28T00:01:30.631 INFO:teuthology.orchestra.run.smithi142.stderr:sys 0m0.197s 2024-01-28T00:01:30.664 INFO:teuthology.orchestra.run.smithi099.stderr: 93.6% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.7.log.gz 2024-01-28T00:01:31.050 INFO:teuthology.orchestra.run.smithi099.stderr: 93.5% -- replaced with /var/log/ceph/54223e96-bd6b-11ee-95b2-87774f69a715/ceph-osd.3.log.gz 2024-01-28T00:01:31.051 INFO:teuthology.orchestra.run.smithi099.stderr: 2024-01-28T00:01:31.051 INFO:teuthology.orchestra.run.smithi099.stderr:real 0m1.713s 2024-01-28T00:01:31.052 INFO:teuthology.orchestra.run.smithi099.stderr:user 0m6.348s 2024-01-28T00:01:31.052 INFO:teuthology.orchestra.run.smithi099.stderr:sys 0m0.231s 2024-01-28T00:01:31.052 INFO:tasks.cephadm:Archiving logs... 2024-01-28T00:01:31.052 DEBUG:teuthology.misc:Transferring archived files from smithi099:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131/remote/ubuntu@smithi099.front.sepia.ceph.com/log 2024-01-28T00:01:31.053 DEBUG:teuthology.orchestra.run.smithi099:> sudo tar c -f - -C /var/log/ceph -- . 2024-01-28T00:01:31.999 DEBUG:teuthology.misc:Transferring archived files from smithi142:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131/remote/ubuntu@smithi142.front.sepia.ceph.com/log 2024-01-28T00:01:31.999 DEBUG:teuthology.orchestra.run.smithi142:> sudo tar c -f - -C /var/log/ceph -- . 2024-01-28T00:01:32.850 INFO:tasks.cephadm:Removing cluster... 2024-01-28T00:01:32.850 DEBUG:teuthology.orchestra.run.smithi099:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 --force 2024-01-28T00:01:34.247 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 54223e96-bd6b-11ee-95b2-87774f69a715 --force 2024-01-28T00:01:35.631 INFO:tasks.cephadm:Removing cephadm ... 2024-01-28T00:01:35.632 DEBUG:teuthology.orchestra.run.smithi099:> rm -rf /home/ubuntu/cephtest/cephadm 2024-01-28T00:01:35.639 DEBUG:teuthology.orchestra.run.smithi142:> rm -rf /home/ubuntu/cephtest/cephadm 2024-01-28T00:01:35.644 INFO:tasks.cephadm:Teardown complete 2024-01-28T00:01:35.644 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-01-28T00:01:35.686 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi099:/dev/vg_nvme/lv_1... 2024-01-28T00:01:35.686 DEBUG:teuthology.orchestra.run.smithi099:> sudo nvme disconnect -n lv_1 2024-01-28T00:01:35.982 INFO:teuthology.orchestra.run.smithi099.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-01-28T00:01:35.983 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-28T00:01:35.983 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi099:/dev/vg_nvme/lv_2... 2024-01-28T00:01:35.984 DEBUG:teuthology.orchestra.run.smithi099:> sudo nvme disconnect -n lv_2 2024-01-28T00:01:36.254 INFO:teuthology.orchestra.run.smithi099.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-01-28T00:01:36.255 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-28T00:01:36.255 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi099:/dev/vg_nvme/lv_3... 2024-01-28T00:01:36.256 DEBUG:teuthology.orchestra.run.smithi099:> sudo nvme disconnect -n lv_3 2024-01-28T00:01:36.530 INFO:teuthology.orchestra.run.smithi099.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-01-28T00:01:36.531 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-28T00:01:36.531 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi099:/dev/vg_nvme/lv_4... 2024-01-28T00:01:36.532 DEBUG:teuthology.orchestra.run.smithi099:> sudo nvme disconnect -n lv_4 2024-01-28T00:01:36.810 INFO:teuthology.orchestra.run.smithi099.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-01-28T00:01:36.811 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-28T00:01:36.811 DEBUG:teuthology.orchestra.run.smithi099:> set -ex 2024-01-28T00:01:36.812 DEBUG:teuthology.orchestra.run.smithi099:> sudo dd of=/scratch_devs 2024-01-28T00:01:36.826 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_1... 2024-01-28T00:01:36.826 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_1 2024-01-28T00:01:37.133 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-01-28T00:01:37.134 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-28T00:01:37.134 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_2... 2024-01-28T00:01:37.135 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_2 2024-01-28T00:01:37.437 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-01-28T00:01:37.438 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-28T00:01:37.438 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_3... 2024-01-28T00:01:37.439 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_3 2024-01-28T00:01:37.744 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-01-28T00:01:37.746 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-28T00:01:37.746 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_4... 2024-01-28T00:01:37.746 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_4 2024-01-28T00:01:38.017 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-01-28T00:01:38.017 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-28T00:01:38.018 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-01-28T00:01:38.018 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/scratch_devs 2024-01-28T00:01:38.033 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-01-28T00:01:38.100 INFO:teuthology.task.clock:Checking final clock skew... 2024-01-28T00:01:38.101 DEBUG:teuthology.orchestra.run.smithi099:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-28T00:01:38.103 DEBUG:teuthology.orchestra.run.smithi142:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-28T00:01:38.124 INFO:teuthology.orchestra.run.smithi099.stdout: remote refid st t when poll reach delay offset jitter 2024-01-28T00:01:38.124 INFO:teuthology.orchestra.run.smithi099.stdout:============================================================================== 2024-01-28T00:01:38.124 INFO:teuthology.orchestra.run.smithi099.stdout:*hv01.front.sepi 44.4.53.2 2 u 80 128 377 0.074 -0.468 0.174 2024-01-28T00:01:38.124 INFO:teuthology.orchestra.run.smithi099.stdout:+hv02.front.sepi 63.231.80.2 3 u 10 128 377 0.092 -1.555 0.332 2024-01-28T00:01:38.124 INFO:teuthology.orchestra.run.smithi099.stdout:+hv03.front.sepi 74.6.168.72 3 u 73 128 377 0.099 0.514 0.070 2024-01-28T00:01:38.124 INFO:teuthology.orchestra.run.smithi099.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2024-01-28T00:01:38.126 INFO:teuthology.orchestra.run.smithi142.stdout: remote refid st t when poll reach delay offset jitter 2024-01-28T00:01:38.127 INFO:teuthology.orchestra.run.smithi142.stdout:============================================================================== 2024-01-28T00:01:38.127 INFO:teuthology.orchestra.run.smithi142.stdout:*hv01.front.sepi 44.4.53.2 2 u 34 128 377 0.090 2.027 0.257 2024-01-28T00:01:38.127 INFO:teuthology.orchestra.run.smithi142.stdout:+hv02.front.sepi 63.231.80.2 3 u 26 128 377 0.100 0.821 0.215 2024-01-28T00:01:38.127 INFO:teuthology.orchestra.run.smithi142.stdout:+hv03.front.sepi 74.6.168.72 3 u 23 128 377 0.107 2.682 0.166 2024-01-28T00:01:38.127 INFO:teuthology.orchestra.run.smithi142.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2024-01-28T00:01:38.128 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-01-28T00:01:38.141 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-01-28T00:01:38.142 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-01-28T00:01:38.185 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-01-28T00:01:38.215 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-01-28T00:01:38.249 INFO:teuthology.task.internal:Duration was 2506.277927 seconds 2024-01-28T00:01:38.250 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-01-28T00:01:38.282 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-01-28T00:01:38.282 DEBUG:teuthology.orchestra.run.smithi099:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-01-28T00:01:38.284 DEBUG:teuthology.orchestra.run.smithi142:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-01-28T00:01:38.334 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-01-28T00:01:38.334 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi099.front.sepia.ceph.com 2024-01-28T00:01:38.334 DEBUG:teuthology.orchestra.run.smithi099:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-01-28T00:01:38.346 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi142.front.sepia.ceph.com 2024-01-28T00:01:38.346 DEBUG:teuthology.orchestra.run.smithi142:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-01-28T00:01:38.393 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-01-28T00:01:38.393 DEBUG:teuthology.orchestra.run.smithi099:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-01-28T00:01:38.396 DEBUG:teuthology.orchestra.run.smithi142:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-01-28T00:01:38.490 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-01-28T00:01:38.491 DEBUG:teuthology.orchestra.run.smithi099:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-01-28T00:01:38.493 DEBUG:teuthology.orchestra.run.smithi142:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-01-28T00:01:38.638 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-01-28T00:01:38.756 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-01-28T00:01:38.757 DEBUG:teuthology.orchestra.run.smithi099:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-01-28T00:01:38.769 DEBUG:teuthology.orchestra.run.smithi142:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-01-28T00:01:38.785 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-01-28T00:01:38.798 DEBUG:teuthology.orchestra.run.smithi099:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-01-28T00:01:38.811 DEBUG:teuthology.orchestra.run.smithi142:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-01-28T00:01:38.821 INFO:teuthology.orchestra.run.smithi099.stdout:kernel.core_pattern = core 2024-01-28T00:01:38.841 INFO:teuthology.orchestra.run.smithi142.stdout:kernel.core_pattern = core 2024-01-28T00:01:38.873 DEBUG:teuthology.orchestra.run.smithi099:> test -e /home/ubuntu/cephtest/archive/coredump 2024-01-28T00:01:38.903 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-28T00:01:38.904 DEBUG:teuthology.orchestra.run.smithi142:> test -e /home/ubuntu/cephtest/archive/coredump 2024-01-28T00:01:38.921 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-28T00:01:38.921 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-01-28T00:01:38.953 INFO:teuthology.task.internal:Transferring archived files... 2024-01-28T00:01:38.954 DEBUG:teuthology.misc:Transferring archived files from smithi099:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131/remote/smithi099 2024-01-28T00:01:38.955 DEBUG:teuthology.orchestra.run.smithi099:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-01-28T00:01:38.990 DEBUG:teuthology.misc:Transferring archived files from smithi142:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131/remote/smithi142 2024-01-28T00:01:38.990 DEBUG:teuthology.orchestra.run.smithi142:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-01-28T00:01:39.018 INFO:teuthology.task.internal:Removing archive directory... 2024-01-28T00:01:39.018 DEBUG:teuthology.orchestra.run.smithi099:> rm -rf -- /home/ubuntu/cephtest/archive 2024-01-28T00:01:39.027 DEBUG:teuthology.orchestra.run.smithi142:> rm -rf -- /home/ubuntu/cephtest/archive 2024-01-28T00:01:39.062 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-01-28T00:01:39.087 INFO:teuthology.task.internal:Not uploading archives. 2024-01-28T00:01:39.087 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-01-28T00:01:39.156 INFO:teuthology.task.internal:Tidying up after the test... 2024-01-28T00:01:39.156 DEBUG:teuthology.orchestra.run.smithi099:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-01-28T00:01:39.158 DEBUG:teuthology.orchestra.run.smithi142:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-01-28T00:01:39.164 INFO:teuthology.orchestra.run.smithi099.stdout: 528226 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jan 28 00:01 /home/ubuntu/cephtest 2024-01-28T00:01:39.166 INFO:teuthology.orchestra.run.smithi142.stdout: 659550 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jan 28 00:01 /home/ubuntu/cephtest 2024-01-28T00:01:39.168 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-01-28T00:01:39.200 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-01-28T00:01:39.268 INFO:teuthology.nuke:Checking targets against current locks 2024-01-28T00:01:39.297 DEBUG:teuthology.nuke:shortname: smithi099 2024-01-28T00:01:39.298 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-28T00:01:39.319 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi099.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-27 23:11:50.210281', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE='} 2024-01-28T00:01:39.324 DEBUG:teuthology.nuke:shortname: smithi142 2024-01-28T00:01:39.324 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-28T00:01:39.349 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi142.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535131', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-27 23:11:50.208899', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE='} 2024-01-28T00:01:39.361 INFO:teuthology.orchestra.console.smithi099:Power off 2024-01-28T00:01:39.361 DEBUG:teuthology.orchestra.console.smithi099:pexpect command: ipmitool -H smithi099.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-01-28T00:01:39.402 INFO:teuthology.orchestra.console.smithi142:Power off 2024-01-28T00:01:39.403 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-01-28T00:01:39.412 DEBUG:teuthology.orchestra.console.smithi099:power off output: Chassis Power Control: Down/Off 2024-01-28T00:01:39.413 DEBUG:teuthology.orchestra.console.smithi099:pexpect command: ipmitool -H smithi099.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-28T00:01:39.425 DEBUG:teuthology.orchestra.console.smithi142:power off output: Chassis Power Control: Down/Off 2024-01-28T00:01:39.426 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-28T00:01:39.436 DEBUG:teuthology.orchestra.console.smithi099:check power output: Chassis Power is on 2024-01-28T00:01:39.449 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is on 2024-01-28T00:01:43.437 DEBUG:teuthology.orchestra.console.smithi099:pexpect command: ipmitool -H smithi099.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-28T00:01:43.451 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-28T00:01:43.549 DEBUG:teuthology.orchestra.console.smithi099:check power output: Chassis Power is on 2024-01-28T00:01:43.560 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is on 2024-01-28T00:01:47.552 DEBUG:teuthology.orchestra.console.smithi099:pexpect command: ipmitool -H smithi099.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-28T00:01:47.563 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-28T00:01:47.665 DEBUG:teuthology.orchestra.console.smithi099:check power output: Chassis Power is off 2024-01-28T00:01:47.674 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is on 2024-01-28T00:01:47.767 INFO:teuthology.orchestra.console.smithi099:Power off completed 2024-01-28T00:01:51.679 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-28T00:01:51.789 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is off 2024-01-28T00:01:51.890 INFO:teuthology.orchestra.console.smithi142:Power off completed 2024-01-28T00:01:51.994 INFO:teuthology.run:Summary data: description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 2506.2779273986816 failure_reason: reached maximum tries (301) after waiting for 300 seconds owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=494ed68e431d4888a4471f9e6e3242d5 status: fail success: false 2024-01-28T00:01:51.994 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-01-28T00:01:52.096 INFO:teuthology.run:FAIL