mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
* feat(k8s/resource-pool): add the ability to mark/unmark resource pool as system fix(kube/ns): check label to see if namespace is system refactor(k8s/namespaces): rename variables feat(kubernetes): toggle system state in the server (#5361) fix(app/resource-pool): UI fixes feat(app/resource-pool): add confirmation modal when unamrking system namespace * refactor(app): review changes * feat(app/namespaces): introduce store to retrieve namespace system status without changing all the kubernetes models refactor(app/namespaces): remove unused code first introduced for system tagging fix(app/namespaces): cache namespaces to retrieve system status regardless of namespace reference format refactor(app): migrate namespace store from helper to a separate singleton refactor(app): remove KubernetesNamespaceHelper from DI cycle * refactor(app): normalize usage of KubernetesNamespaceHelper functions * refactor(app/k8s): change namespace store to functions instead of class Co-authored-by: LP B <xAt0mZ@users.noreply.github.com>
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
export function KubernetesResourcePoolFormValues(defaults) {
|
|
this.Name = '';
|
|
this.MemoryLimit = defaults.MemoryLimit;
|
|
this.CpuLimit = defaults.CpuLimit;
|
|
this.HasQuota = false;
|
|
this.IngressClasses = []; // KubernetesResourcePoolIngressClassFormValue
|
|
this.Registries = []; // RegistryViewModel
|
|
this.EndpointId = 0;
|
|
this.IsSystem = false;
|
|
}
|
|
|
|
/**
|
|
* @param {KubernetesIngressClass} ingressClass
|
|
*/
|
|
export function KubernetesResourcePoolIngressClassFormValue(ingressClass) {
|
|
return {
|
|
Namespace: undefined, // will be filled inside ResourcePoolService.create
|
|
IngressClass: ingressClass,
|
|
RewriteTarget: false,
|
|
Annotations: [], // KubernetesResourcePoolIngressClassAnnotationFormValue
|
|
Hosts: [],
|
|
Selected: false,
|
|
WasSelected: false,
|
|
AdvancedConfig: false,
|
|
Paths: [], // will be filled to save IngressClass.Paths inside ingressClassesToFormValues() on RP EDIT
|
|
};
|
|
}
|
|
|
|
export function KubernetesResourcePoolIngressClassAnnotationFormValue() {
|
|
return {
|
|
Key: '',
|
|
Value: '',
|
|
};
|
|
}
|
|
|
|
export function KubernetesResourcePoolIngressClassHostFormValue() {
|
|
return {
|
|
Host: '',
|
|
PreviousHost: '',
|
|
NeedsDeletion: false,
|
|
IsNew: true,
|
|
};
|
|
}
|