mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
5 lines
167 B
TypeScript
5 lines
167 B
TypeScript
export const KUBERNETES_DEFAULT_NAMESPACE = 'default';
|
|
|
|
export function isDefaultNamespace(namespace: string) {
|
|
return namespace === KUBERNETES_DEFAULT_NAMESPACE;
|
|
}
|