From: Stephan Müller Date: Wed, 27 Jun 2018 14:58:20 +0000 (+0200) Subject: mgr/dashboard: Erasure code profile interface X-Git-Tag: v14.0.1~96^2~16 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1ef6c7a382edfd5df5e0702d4878f972a3eb0b60;p=ceph-ci.git mgr/dashboard: Erasure code profile interface Fixes: https://tracker.ceph.com/issues/36355 Signed-off-by: Stephan Müller --- 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 index 00000000000..37ed147b441 --- /dev/null +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/models/erasure-code-profile.ts @@ -0,0 +1,7 @@ +export interface ErasureCodeProfile { + k: number; + m: number; + name: string; + plugin: string; + technique: string; +}