From: Aashish Sharma Date: Thu, 11 Jun 2026 09:19:04 +0000 (+0530) Subject: mgr/dashboard: fix zone creation in rgw service creation form X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F69412%2Fhead;p=ceph.git 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 --- 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 03206a6ddc3..e849c1bdbe6 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()