|
| 1 | +--- |
| 2 | +apiVersion: apiextensions.k8s.io/v1 |
| 3 | +kind: CustomResourceDefinition |
| 4 | +metadata: |
| 5 | + name: spiffeids.spiffeid.spiffe.io |
| 6 | + labels: |
| 7 | + app.kubernetes.io/part-of: nginx-service-mesh |
| 8 | +spec: |
| 9 | + group: spiffeid.spiffe.io |
| 10 | + names: |
| 11 | + kind: SpiffeID |
| 12 | + listKind: SpiffeIDList |
| 13 | + plural: spiffeids |
| 14 | + singular: spiffeid |
| 15 | + scope: Namespaced |
| 16 | + versions: |
| 17 | + - name: v1beta1 |
| 18 | + served: true |
| 19 | + storage: true |
| 20 | + subresources: |
| 21 | + status: {} |
| 22 | + schema: |
| 23 | + openAPIV3Schema: |
| 24 | + description: SpiffeID is the Schema for the spiffeid API |
| 25 | + properties: |
| 26 | + apiVersion: |
| 27 | + description: 'APIVersion defines the versioned schema of this representation |
| 28 | + of an object. Servers should convert recognized schemas to the latest |
| 29 | + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' |
| 30 | + type: string |
| 31 | + kind: |
| 32 | + description: 'Kind is a string value representing the REST resource this |
| 33 | + object represents. Servers may infer this from the endpoint the client |
| 34 | + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' |
| 35 | + type: string |
| 36 | + metadata: |
| 37 | + type: object |
| 38 | + spec: |
| 39 | + description: SpiffeIDSpec defines the desired state of SpiffeID |
| 40 | + properties: |
| 41 | + dnsNames: |
| 42 | + items: |
| 43 | + type: string |
| 44 | + type: array |
| 45 | + federatesWith: |
| 46 | + items: |
| 47 | + type: string |
| 48 | + type: array |
| 49 | + parentId: |
| 50 | + type: string |
| 51 | + selector: |
| 52 | + properties: |
| 53 | + arbitrary: |
| 54 | + description: Arbitrary selectors |
| 55 | + items: |
| 56 | + type: string |
| 57 | + type: array |
| 58 | + containerImage: |
| 59 | + description: Container image to match for this spiffe ID |
| 60 | + type: string |
| 61 | + containerName: |
| 62 | + description: Container name to match for this spiffe ID |
| 63 | + type: string |
| 64 | + namespace: |
| 65 | + description: Namespace to match for this spiffe ID |
| 66 | + type: string |
| 67 | + nodeName: |
| 68 | + description: Node name to match for this spiffe ID |
| 69 | + type: string |
| 70 | + podLabel: |
| 71 | + additionalProperties: |
| 72 | + type: string |
| 73 | + description: Pod label name/value to match for this spiffe ID |
| 74 | + type: object |
| 75 | + podName: |
| 76 | + description: Pod name to match for this spiffe ID |
| 77 | + type: string |
| 78 | + podUid: |
| 79 | + description: Pod UID to match for this spiffe ID |
| 80 | + type: string |
| 81 | + serviceAccount: |
| 82 | + description: ServiceAccount to match for this spiffe ID |
| 83 | + type: string |
| 84 | + cluster: |
| 85 | + description: The k8s_psat cluster name |
| 86 | + type: string |
| 87 | + agent_node_uid: |
| 88 | + description: UID of the node |
| 89 | + type: string |
| 90 | + type: object |
| 91 | + spiffeId: |
| 92 | + type: string |
| 93 | + required: |
| 94 | + - parentId |
| 95 | + - selector |
| 96 | + - spiffeId |
| 97 | + type: object |
| 98 | + status: |
| 99 | + description: SpiffeIDStatus defines the observed state of SpiffeID |
| 100 | + properties: |
| 101 | + entryId: |
| 102 | + description: 'INSERT ADDITIONAL STATUS FIELD - define observed state |
| 103 | + of cluster Important: Run "make" to regenerate code after modifying |
| 104 | + this file' |
| 105 | + type: string |
| 106 | + type: object |
| 107 | + type: object |
0 commit comments