Namespace Commands¶
The namespace command allows you to view, switch, and manage Kubernetes namespaces.
Usage¶
Available Commands¶
Show Current Namespace¶
Shows the currently active namespace.List Namespaces¶
Lists all available namespaces with their status. Output includes: - Namespace name - Status - Active status (*)Switch Namespace¶
Direct switch (multiple formats):
k8stool ns <namespace-name> # Direct switch (new shorthand)
k8stool ns switch <namespace-name> # Using switch subcommand
Interactive switch:
k8stool ns -i # Interactive shorthand
k8stool ns switch # Interactive with switch subcommand
k8stool ns switch -i # Interactive with flag
Interactive Mode Features¶
The interactive mode provides: 1. List of all available namespaces 2. Current namespace highlighted 3. Arrow key navigation 4. Enter to select namespace
Example output:
Output¶
The output includes: - Namespace name - Status (color-coded) - Active status (*)
Example output when showing current namespace:
Example output when switching namespace:
Example error when namespace doesn't exist:
Related Commands¶
- Context: Manage context selection