forked from rancher/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Lvm storage provisioner settings in Storage Class create page
Signed-off-by: Francesco Torchia <[email protected]>
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
pkg/harvester/edit/harvesterhci.io.storage/provisioners/lvm.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<script> | ||
import KeyValue from '@shell/components/form/KeyValue'; | ||
import LabeledSelect from '@shell/components/form/LabeledSelect'; | ||
import { LabeledInput } from '@components/Form/LabeledInput'; | ||
import RadioGroup from '@components/Form/Radio/RadioGroup'; | ||
import { _CREATE, _VIEW } from '@shell/config/query-params'; | ||
Check warning on line 7 in pkg/harvester/edit/harvesterhci.io.storage/provisioners/lvm.vue
|
||
export default { | ||
components: { | ||
KeyValue, | ||
LabeledSelect, | ||
LabeledInput, | ||
RadioGroup, | ||
}, | ||
props: { | ||
value: { | ||
type: Object, | ||
required: true | ||
}, | ||
mode: { | ||
type: String, | ||
required: true | ||
}, | ||
realMode: { | ||
type: String, | ||
required: true | ||
}, | ||
}, | ||
data() { | ||
return {}; | ||
}, | ||
computed: { | ||
}, | ||
}; | ||
</script> | ||
<template> | ||
<div> | ||
LVM settings TODO | ||
</div> | ||
</template> |