|
1 | 1 | { |
2 | | - "description": "Component describes an Dapr component type", |
| 2 | + "description": "Component describes an Dapr component type.", |
3 | 3 | "properties": { |
4 | 4 | "apiVersion": { |
5 | | - "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", |
| 5 | + "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", |
6 | 6 | "type": "string" |
7 | 7 | }, |
8 | 8 | "auth": { |
9 | | - "description": "Auth represents authentication details for the component", |
| 9 | + "description": "Auth represents authentication details for the component.", |
10 | 10 | "properties": { |
11 | 11 | "secretStore": { |
12 | 12 | "type": "string" |
|
19 | 19 | "additionalProperties": false |
20 | 20 | }, |
21 | 21 | "kind": { |
22 | | - "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", |
| 22 | + "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", |
23 | 23 | "type": "string" |
24 | 24 | }, |
25 | 25 | "metadata": { |
|
32 | 32 | "type": "array" |
33 | 33 | }, |
34 | 34 | "spec": { |
35 | | - "description": "ComponentSpec is the spec for a component", |
| 35 | + "description": "ComponentSpec is the spec for a component.", |
36 | 36 | "properties": { |
37 | 37 | "ignoreErrors": { |
38 | 38 | "type": "boolean" |
|
42 | 42 | }, |
43 | 43 | "metadata": { |
44 | 44 | "items": { |
45 | | - "description": "MetadataItem is a name/value pair for a metadata", |
| 45 | + "description": "NameValuePair is a name/value pair.", |
46 | 46 | "properties": { |
| 47 | + "envRef": { |
| 48 | + "description": "EnvRef is the name of an environmental variable to read the value from.", |
| 49 | + "type": "string" |
| 50 | + }, |
47 | 51 | "name": { |
| 52 | + "description": "Name of the property.", |
48 | 53 | "type": "string" |
49 | 54 | }, |
50 | 55 | "secretKeyRef": { |
51 | | - "description": "SecretKeyRef is a reference to a secret holding the value for the metadata item. Name is the secret name, and key is the field in the secret.", |
| 56 | + "description": "SecretKeyRef is the reference of a value in a secret store component.", |
52 | 57 | "properties": { |
53 | 58 | "key": { |
| 59 | + "description": "Field in the secret.", |
54 | 60 | "type": "string" |
55 | 61 | }, |
56 | 62 | "name": { |
| 63 | + "description": "Secret name.", |
57 | 64 | "type": "string" |
58 | 65 | } |
59 | 66 | }, |
60 | 67 | "required": [ |
61 | | - "key", |
62 | 68 | "name" |
63 | 69 | ], |
64 | 70 | "type": "object", |
65 | 71 | "additionalProperties": false |
66 | 72 | }, |
67 | 73 | "value": { |
| 74 | + "description": "Value of the property, in plaintext.", |
68 | 75 | "x-kubernetes-preserve-unknown-fields": true |
69 | 76 | } |
70 | 77 | }, |
|
0 commit comments