]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/upgrade.interface.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / models / upgrade.interface.ts
1 export interface UpgradeInfoInterface {
2 image: string;
3 registry: string;
4 versions: string[];
5 }
6
7 export interface UpgradeStatusInterface {
8 target_image: string;
9 in_progress: boolean;
10 which: string;
11 services_complete: string;
12 progress: string;
13 message: string;
14 is_paused: boolean;
15 }