Skip to content

Usage Guide

This guide provides practical examples for common use cases and scenarios you might encounter while using K8sTool.

Pod Management

Viewing and Filtering Pods

# List pods in default namespace
k8stool get pods

# List pods in all namespaces
k8stool get pods -A

# Filter pods by label
k8stool get pods -l app=nginx

# Filter by status
k8stool get pods -s Running

# Sort pods by different criteria
k8stool get pods --sort age         # Sort by age
k8stool get pods --sort name        # Sort by name
k8stool get pods --sort status      # Sort by status
k8stool get pods --sort age --reverse # Newest first

Working with Pod Logs

# View pod logs
k8stool logs nginx-pod

# Follow log output in real-time
k8stool logs nginx-pod -f

# View previous container logs
k8stool logs nginx-pod -p

# Show specific number of lines
k8stool logs nginx-pod --tail 100

# View logs from specific container
k8stool logs nginx-pod -c nginx

# Time-based log filtering
k8stool logs nginx-pod --since 1h
k8stool logs nginx-pod --since 5m
k8stool logs nginx-pod --since-time "2024-01-20T15:04:05Z"

Resource Monitoring

Pod Metrics

# View pod metrics
k8stool get pods --metrics

# View metrics for specific pods
k8stool metrics pods
k8stool metrics <pod-name>

# View node metrics
k8stool metrics nodes

Event Monitoring

# View pod events
k8stool get events pod nginx-pod
k8stool get ev pod nginx-pod    # Short form

# View deployment events
k8stool get events deployment nginx
k8stool get ev deploy nginx     # Short form

Deployment Management

Basic Operations

# List deployments
k8stool get deployments
k8stool get deploy    # Short form

# List deployments in specific namespace
k8stool get deploy -n kube-system

# List deployments across all namespaces
k8stool get deploy -A

# View deployment details
k8stool describe deployment nginx
k8stool describe deploy nginx    # Short form

Port Forwarding

Basic Port Forwarding

# Forward single port
k8stool port-forward pod nginx 8080:80
k8stool pf pod nginx 8080:80    # Short form

# Forward multiple ports
k8stool port-forward pod nginx 8080:80 9090:90

# Interactive port forwarding
k8stool port-forward -i

Context and Namespace Management

Working with Contexts

# View current context
k8stool ctx current
k8stool context current    # Long form

# Switch context
k8stool ctx my-context
k8stool context my-context    # Long form

# Interactive context switching
k8stool ctx switch
k8stool context switch    # Long form

Managing Namespaces

# View current namespace
k8stool ns
k8stool namespace    # Long form

# List all namespaces
k8stool ns list
k8stool ns ls

# Switch namespace directly
k8stool ns production
k8stool namespace production    # Long form

# Interactive namespace switching
k8stool ns -i
k8stool namespace -i    # Long form

Common Workflows

Application Monitoring

# View application pods with metrics
k8stool get pods -l app=myapp --metrics

# Monitor pod events
k8stool get events pod myapp-pod

# Follow application logs
k8stool logs -l app=myapp -f

Development Workflow

# Forward application ports
k8stool port-forward pod myapp 8080:80

# Switch context to development
k8stool ctx dev-cluster

# Switch to development namespace
k8stool ns development

# Monitor application
k8stool get pods -l app=myapp -w

Best Practices

  1. Resource Organization
  2. Use consistent labels for filtering
  3. Leverage namespaces for isolation
  4. Use short aliases for common commands

  5. Monitoring

  6. Regularly check pod metrics
  7. Monitor important events
  8. Use real-time log following for debugging

  9. Context Management

  10. Use interactive mode for context switching
  11. Verify current context before operations
  12. Keep namespaces organized

  13. Port Forwarding

  14. Use interactive mode for better UX
  15. Forward multiple ports when needed
  16. Clean up port forwards when done