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-Tag: v21.1.0~13^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f18b89d709acac923fc8b7913162c2aedd5cb189;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 (cherry picked from commit 95a8c70be86569ef19f3d5c1b11f7cebed682db5) --- 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()