ui/lib/shared/addon/components/volume-source/source-host-path/component.js

19 lines
330 B
JavaScript

import Component from '@ember/component';
import layout from './template';
export default Component.extend({
layout,
field: 'hostPath',
fieldType: 'hostPathVolumeSource',
kindChoices: [
'DirectoryOrCreate',
'FileOrCreate',
'Directory',
'File',
'Socket',
'CharDevice',
'BlockDevice',
],
});