kind2resource.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. Copyright 2018 The Knative Authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package apis
  14. import (
  15. "fmt"
  16. "strings"
  17. "k8s.io/apimachinery/pkg/runtime/schema"
  18. )
  19. // KindToResource converts a GroupVersionKind to a GroupVersionResource
  20. // through the world's simplest (worst) pluralizer.
  21. func KindToResource(gvk schema.GroupVersionKind) schema.GroupVersionResource {
  22. return schema.GroupVersionResource{
  23. Group: gvk.Group,
  24. Version: gvk.Version,
  25. Resource: pluralizeKind(gvk.Kind),
  26. }
  27. }
  28. // Takes a kind and pluralizes it. This is super terrible, but I am
  29. // not aware of a generic way to do this.
  30. // I am not alone in thinking this and I haven't found a better solution:
  31. // This seems relevant:
  32. // https://github.com/kubernetes/kubernetes/issues/18622
  33. func pluralizeKind(kind string) string {
  34. ret := strings.ToLower(kind)
  35. if strings.HasSuffix(ret, "s") {
  36. return fmt.Sprintf("%ses", ret)
  37. }
  38. return fmt.Sprintf("%ss", ret)
  39. }