mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
15 lines
247 B
JavaScript
15 lines
247 B
JavaScript
/**
|
|||
* Stack Model
|
|||
*/
|
|||
const _KubernetesStack = Object.freeze({
|
|||
Name: '',
|
|||
ResourcePool: '',
|
|||
Applications: [],
|
|||
});
|
|||
|
|||
export class KubernetesStack {
|
|||
constructor() {
|
|||
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesStack)));
|
|||
}
|
|||
}
|