diff --git a/pkg/tiller/kind_sorter.go b/pkg/tiller/kind_sorter.go index fbeb75c35..9b4780771 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 }