1 min readAug 25, 2019
Yes. Because all that Kustomize does is merging the yaml files locally into one Multi Resources File, then that one file can normally be applied. There is no server side service for Kustomize. You can do:
kubectl kustomize build my-config > build.yaml
kubectl apply -f build.yaml
How you created the build.yaml
doesn’t matter.