]> git.proxmox.com Git - ceph.git/blobdiff - 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
diff --git a/ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/upgrade.interface.ts b/ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/upgrade.interface.ts
new file mode 100644 (file)
index 0000000..2a853d5
--- /dev/null
@@ -0,0 +1,15 @@
+export interface UpgradeInfoInterface {
+  image: string;
+  registry: string;
+  versions: string[];
+}
+
+export interface UpgradeStatusInterface {
+  target_image: string;
+  in_progress: boolean;
+  which: string;
+  services_complete: string;
+  progress: string;
+  message: string;
+  is_paused: boolean;
+}