mirror of https://github.com/portainer/portainer
25 lines
439 B
JavaScript
25 lines
439 B
JavaScript
|
/**
|
||
|
* KubernetesDaemonSet Model
|
||
|
*/
|
||
|
const _KubernetesDaemonSet = Object.freeze({
|
||
|
Namespace: '',
|
||
|
Name: '',
|
||
|
StackName: '',
|
||
|
Image: '',
|
||
|
Env: [],
|
||
|
CpuLimit: 0,
|
||
|
MemoryLimit: 0,
|
||
|
VoluemMounts: [],
|
||
|
Volumes: [],
|
||
|
Secret: undefined,
|
||
|
ApplicationName: '',
|
||
|
ApplicationOwner: '',
|
||
|
Note: '',
|
||
|
});
|
||
|
|
||
|
export class KubernetesDaemonSet {
|
||
|
constructor() {
|
||
|
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesDaemonSet)));
|
||
|
}
|
||
|
}
|