groupversion_info.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and
  10. limitations under the License.
  11. */
  12. // Package v1alpha1 contains API Schema definitions for the external-secrets v1alpha1 API group
  13. // +kubebuilder:object:generate=true
  14. // +groupName=external-secrets.io
  15. package v1alpha1
  16. import (
  17. "reflect"
  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: "external-secrets.io", Version: "v1alpha1"}
  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. )
  29. // SecretStore type metadata.
  30. var (
  31. SecretStoreKind = reflect.TypeOf(SecretStore{}).Name()
  32. SecretStoreKindAPIVersion = SecretStoreKind + "." + GroupVersion.String()
  33. )