Skip to content

Instantly share code, notes, and snippets.

View Canepro's full-sized avatar
🏠
Working from home

Vincent Mogah Canepro

🏠
Working from home
  • Rocket.Chat
  • Salford, Manchester, UK
  • 17:23 (UTC)
View GitHub Profile
@Canepro
Canepro / kube_aliases.ps1
Created November 3, 2025 12:38
kubectl shortcuts for PowerShell
# --- kubectl shortcuts for PowerShell ---
# Simple aliases
Set-Alias k kubectl
# Common resource shortcuts
function kgp { kubectl get pods @args } # List pods
function kgs { kubectl get svc @args } # List services
function kgn { kubectl get nodes @args } # List nodes
function kgi { kubectl get ingress @args } # List ingress
@Canepro
Canepro / .kube_aliases
Created October 30, 2025 12:45
Handy kubectl aliases and functions for Rocket.Chat and Kubernetes troubleshooting.
# --- kubectl shortcuts ---
# Drop this file into ~/.bash_aliases or source it manually:
# source ~/.bash_aliases
# Works best with bash; assumes kubectl is installed and configured.
alias k='kubectl'
# Common resource shortcuts
alias kgp='kubectl get pods' # List pods in current namespace
alias kgs='kubectl get svc' # List services