Skip to content

Commit

Permalink
Add Lvm storage provisioner settings in Storage Class create page
Browse files Browse the repository at this point in the history
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
  • Loading branch information
torchiaf committed Jul 19, 2024
1 parent 7c77b91 commit a42a608
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions pkg/harvester/edit/harvesterhci.io.storage/provisioners/lvm.vue
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

View workflow job for this annotation

GitHub Actions / lint

'_CREATE' is defined but never used

Check warning on line 7 in pkg/harvester/edit/harvesterhci.io.storage/provisioners/lvm.vue

View workflow job for this annotation

GitHub Actions / lint

'_VIEW' is defined but never used
export default {
components: {
KeyValue,

Check warning on line 11 in pkg/harvester/edit/harvesterhci.io.storage/provisioners/lvm.vue

View workflow job for this annotation

GitHub Actions / lint

The "KeyValue" component has been registered but not used
LabeledSelect,

Check warning on line 12 in pkg/harvester/edit/harvesterhci.io.storage/provisioners/lvm.vue

View workflow job for this annotation

GitHub Actions / lint

The "LabeledSelect" component has been registered but not used
LabeledInput,

Check warning on line 13 in pkg/harvester/edit/harvesterhci.io.storage/provisioners/lvm.vue

View workflow job for this annotation

GitHub Actions / lint

The "LabeledInput" component has been registered but not used
RadioGroup,

Check warning on line 14 in pkg/harvester/edit/harvesterhci.io.storage/provisioners/lvm.vue

View workflow job for this annotation

GitHub Actions / lint

The "RadioGroup" component has been registered but not used
},
props: {
value: {
type: Object,
required: true
},
mode: {
type: String,
required: true
},
realMode: {
type: String,
required: true
},
},
data() {
return {};
},
computed: {

Check warning on line 36 in pkg/harvester/edit/harvesterhci.io.storage/provisioners/lvm.vue

View workflow job for this annotation

GitHub Actions / lint

Unexpected line break after this opening brace
},

Check warning on line 37 in pkg/harvester/edit/harvesterhci.io.storage/provisioners/lvm.vue

View workflow job for this annotation

GitHub Actions / lint

Unexpected line break before this closing brace
};
</script>
<template>
<div>
LVM settings TODO
</div>
</template>

0 comments on commit a42a608

Please sign in to comment.