mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
* refactor(app): summary widget migration [EE-5351] * update converter and limit display --------- Co-authored-by: testa113 <testa113>
10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
export const systemNamespaces = [
|
|
'kube-system',
|
|
'kube-public',
|
|
'kube-node-lease',
|
|
'portainer',
|
|
];
|
|
|
|
export function isSystemNamespace(namespace: string) {
|
|
return systemNamespaces.includes(namespace || '');
|
|
}
|