From f18b89d709acac923fc8b7913162c2aedd5cb189 Mon Sep 17 00:00:00 2001 From: Aashish Sharma Date: Thu, 11 Jun 2026 14:49:04 +0530 Subject: [PATCH] mgr/dashboard: fix zone creation in rgw service creation form The zone creation request from the rgw service creation form was missing the tier_type, sync_from and sync_from_all properties as a result the zone creation was failing. This PR tends to fix this issue. Fixes: https://tracker.ceph.com/issues/77263 Signed-off-by: Aashish Sharma (cherry picked from commit 95a8c70be86569ef19f3d5c1b11f7cebed682db5) --- .../create-rgw-service-entities.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts index 03206a6ddc34..e849c1bdbe66 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts @@ -75,6 +75,9 @@ export class CreateRgwServiceEntitiesComponent extends CdForm implements OnInit this.zone.system_key = new SystemKey(); this.zone.system_key.access_key = ''; this.zone.system_key.secret_key = ''; + this.zone.tier_type = ''; + this.zone.sync_from = ''; + this.zone.sync_from_all = true; this.rgwRealmService .create(this.realm, true) .toPromise() -- 2.47.3