#!/bin/bash

OPTIONS="-w -o wide"
if [ "$1" == "-s" ]; then
    OPTIONS="$OPTIONS -n kube-system"
elif [ "$1" == "-n" ]; then
    OPTIONS="$OPTIONS -n $2"
fi
kubectl get pods $OPTIONS
