generators.external-secrets.io_fakes.yaml 2.2 KB

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