#1827 introduced this funny bug that kind is logged in unexpected way.
More specifically,
|
lowerCamelCaseKind := strings.ToLower(gvk.Kind[:1]) + gvk.Kind[1:] |
If gvk.Kind is "APIService", I expect "apiService", but the current code produces and logs "aPIService".