diff --git a/pkg/tiller/kind_sorter.go b/pkg/tiller/kind_sorter.go
index fbeb75c35ebec494467aae1b22486ed2cda0a47a..9b4780771565007186f65f76b6a4916905045e9c 100644
--- a/pkg/tiller/kind_sorter.go
+++ b/pkg/tiller/kind_sorter.go
@@ -123,5 +123,9 @@ func (k *kindSorter) Less(i, j int) bool {
 	if !ok {
 		return true
 	}
+	if first == second {
+		// same kind so sub sort alphanumeric
+		return a.name < b.name
+	}
 	return first < second
 }