generators.external-secrets.io_fakes.yaml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. apiVersion: apiextensions.k8s.io/v1
  2. kind: CustomResourceDefinition
  3. metadata:
  4. annotations:
  5. controller-gen.kubebuilder.io/version: v0.16.2
  6. labels:
  7. external-secrets.io/component: controller
  8. name: fakes.generators.external-secrets.io
  9. spec:
  10. group: generators.external-secrets.io
  11. names:
  12. categories:
  13. - fake
  14. kind: Fake
  15. listKind: FakeList
  16. plural: fakes
  17. shortNames:
  18. - fake
  19. singular: fake
  20. scope: Namespaced
  21. versions:
  22. - name: v1alpha1
  23. schema:
  24. openAPIV3Schema:
  25. description: |-
  26. Fake generator is used for testing. It lets you define
  27. a static set of credentials that is always returned.
  28. properties:
  29. apiVersion:
  30. description: |-
  31. APIVersion defines the versioned schema of this representation of an object.
  32. Servers should convert recognized schemas to the latest internal value, and
  33. may reject unrecognized values.
  34. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
  35. type: string
  36. kind:
  37. description: |-
  38. Kind is a string value representing the REST resource this object represents.
  39. Servers may infer this from the endpoint the client submits requests to.
  40. Cannot be updated.
  41. In CamelCase.
  42. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
  43. type: string
  44. metadata:
  45. type: object
  46. spec:
  47. description: FakeSpec contains the static data.
  48. properties:
  49. controller:
  50. description: |-
  51. Used to select the correct ESO controller (think: ingress.ingressClassName)
  52. The ESO controller is instantiated with a specific controller name and filters VDS based on this property
  53. type: string
  54. data:
  55. additionalProperties:
  56. type: string
  57. description: |-
  58. Data defines the static data returned
  59. by this generator.
  60. type: object
  61. type: object
  62. type: object
  63. served: true
  64. storage: true
  65. subresources:
  66. status: {}