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