mirror of https://github.com/portainer/portainer
28 lines
582 B
JavaScript
28 lines
582 B
JavaScript
|
export const KubernetesPortainerConfigurationOwnerLabel = 'io.portainer.kubernetes.configuration.owner';
|
||
|
|
||
|
/**
|
||
|
* Configuration Model (Composite)
|
||
|
*/
|
||
|
const _KubernetesConfiguration = Object.freeze({
|
||
|
Id: 0,
|
||
|
Name: '',
|
||
|
Type: '',
|
||
|
Namespace: '',
|
||
|
CreationDate: '',
|
||
|
ConfigurationOwner: '',
|
||
|
Used: false,
|
||
|
Applications: [],
|
||
|
Data: {},
|
||
|
});
|
||
|
|
||
|
export class KubernetesConfiguration {
|
||
|
constructor() {
|
||
|
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesConfiguration)));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export const KubernetesConfigurationTypes = Object.freeze({
|
||
|
CONFIGMAP: 1,
|
||
|
SECRET: 2,
|
||
|
});
|