This is just a simple command to help you in finding the tiller version running in kubernetes. I made it when trying to make sure my laptop’s helm install matched the cluster tiller install:
TILLER_POD=`kubectl get pods -n kube-system | grep tiller | awk '{print $1}'` kubectl exec -n kube-system $TILLER_POD -- /tiller -version