Kustomize is a tool to easily deploy resources for Kubernetes. More information: https://github.com/kubernetes-sigs/kustomize.
kustomize create --resources {{deployment.yaml,service.yaml}} --namespace {{staging}}
kubectl
:kustomize build . | kubectl apply -f -
kustomize edit set image {{busybox=alpine:3.6}}
kustomize create --autodetect