mirror of https://github.com/portainer/portainer
22 lines
343 B
JavaScript
22 lines
343 B
JavaScript
/**
|
|||
* KubernetesPod Model
|
|||
*/
|
|||
const _KubernetesPod = Object.freeze({
|
|||
Id: '',
|
|||
Name: '',
|
|||
Namespace: '',
|
|||
Images: [],
|
|||
Status: '',
|
|||
Restarts: 0,
|
|||
Node: '',
|
|||
CreationDate: '',
|
|||
Containers: [],
|
|||
Labels: [],
|
|||
});
|
|||
|
|||
export class KubernetesPod {
|
|||
constructor() {
|
|||
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesPod)));
|
|||
}
|
|||
}
|