#!/bin/bash
dir=${1?need a dir}
shift
kustomize build "$dir" | kubectl apply -f - "$@"
