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 <aasharma@redhat.com>
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()