Operator can be deployed with kubectl or kustomize. Use may choose one that is more suitable.
# deploy
kubectl apply -k config/default/
# remove
kubectl delete -k config/default/
# build and apply
kustomize build config/default | kubectl apply -f -
# build and remove
kustomize build config/default | kubectl delete -f -