You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/reference-kubernetes-provider.md
-128Lines changed: 0 additions & 128 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,14 +31,6 @@ The `spec.target` property has the following child property.
31
31
|Name|Description|Required|Type|
32
32
|---|---|---|---|
33
33
|configMapName|The name of the ConfigMap to be created|true|string|
34
-
|configMapData|The setting that specifies how the retrieved data should be populated in the generated ConfigMap|false|object|
35
-
36
-
If the `spec.target.configMapData` property is not set, the generated ConfigMap will be populated with the list of key-values retrieved from Azure App Configuration, which allows the ConfigMap to be consumed as environment variables. Update this property if you wish to consume the ConfigMap as a mounted file. This property has the following child properties.
37
-
38
-
|Name|Description|Required|Type|
39
-
|---|---|---|---|
40
-
|type|The setting that indicates how the retrieved data is constructed in the generated ConfigMap. The allowed values include `default`, `json`, `yaml` and `properties`|optional|string|
41
-
|key|The key name of the retrieved data when the `type` is set to `json`, `yaml` or `properties`. Set it to the file name if the ConfigMap is set up to be consumed as a mounted file|conditional|string|
42
34
43
35
If the `spec.auth` property isn't set, the system-assigned managed identity is used. It has the following child properties. Only one authentication method should be set.
44
36
@@ -290,124 +282,4 @@ spec:
290
282
label: common
291
283
- key: sentinelKey
292
284
label: development
293
-
```
294
-
295
-
### Consume ConfigMap
296
-
297
-
Applications running in Kubernetes typically consume the ConfigMap either as environment variables or as configuration files. If the `configMapData.type` property is absent or is set to default, the ConfigMap is populated with the itemized list of data retrieved from Azure App Configuration, which can be easily consumed as environment variables. If the `configMapData.type` property is set to json, yaml or properties, data retrieved from Azure App Configuration is grouped into one item with key name specified by the `configMapData.key` property in the generated ConfigMap, which can be consumed as a mounted file.
298
-
299
-
The following examples show how the data is populated in the generated ConfigMap with different settings of the `configMapData.type` property.
300
-
301
-
Assuming an App Configuration store has these key-values:
302
-
303
-
|key|value|
304
-
|---|---|
305
-
|key1|value1|
306
-
|key2|value2|
307
-
|key3|value3|
308
-
309
-
#### [default](#tab/default)
310
-
311
-
and the `configMapData.type` property is absent or set to `default`,
0 commit comments