#!/bin/sh
# Usage:
# $ kubectl namespace set "my-namespace"
# set -x # verbose
set -o pipefail # exit on pipeline error
set -e # exit on error
set -u # variable must exist
kubectl get namespaces
#!/bin/sh
# Usage:
# $ kubectl namespace set "my-namespace"
# set -x # verbose
set -o pipefail # exit on pipeline error
set -e # exit on error
set -u # variable must exist
kubectl get namespaces