]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
mgr/dashboard: Erasure code profile interface
authorStephan Müller <smueller@suse.com>
Wed, 27 Jun 2018 14:58:20 +0000 (16:58 +0200)
committerStephan Müller <smueller@suse.com>
Tue, 9 Oct 2018 12:51:13 +0000 (14:51 +0200)
Fixes: https://tracker.ceph.com/issues/36355
Signed-off-by: Stephan Müller <smueller@suse.com>
src/pybind/mgr/dashboard/frontend/src/app/shared/models/erasure-code-profile.ts [new file with mode: 0644]

diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/models/erasure-code-profile.ts b/src/pybind/mgr/dashboard/frontend/src/app/shared/models/erasure-code-profile.ts
new file mode 100644 (file)
index 0000000..37ed147
--- /dev/null
@@ -0,0 +1,7 @@
+export interface ErasureCodeProfile {
+  k: number;
+  m: number;
+  name: string;
+  plugin: string;
+  technique: string;
+}