groupversion_info.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. Copyright 2023.
  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 v1 contains API Schema definitions for the database v1 API group
  14. // +kubebuilder:object:generate=true
  15. // +groupName=database.iwanhae.kr
  16. package v1
  17. import (
  18. "k8s.io/apimachinery/pkg/runtime/schema"
  19. "sigs.k8s.io/controller-runtime/pkg/scheme"
  20. )
  21. var (
  22. // GroupVersion is group version used to register these objects
  23. GroupVersion = schema.GroupVersion{Group: "database.iwanhae.kr", Version: "v1"}
  24. // SchemeBuilder is used to add go types to the GroupVersionKind scheme
  25. SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion}
  26. // AddToScheme adds the types in this group-version to the given scheme.
  27. AddToScheme = SchemeBuilder.AddToScheme
  28. )