Skip to content

Commit ec81e3e

Browse files
committed
improve correctness score
1 parent 641a8e0 commit ec81e3e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/azure-app-configuration/reference-kubernetes-provider.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ helm install azureappconfiguration.kubernetesprovider \
168168

169169
### Autoscaling
170170

171-
By default, autoscaling is disabled. However, if you have multiple `AzureAppConfigurationProvider` resources to produce multiple ConfigMaps/Secrets and may hit a performance bottleneck of single pod, you can enable horizontal pod autoscaling by setting `autoscaling.enabled` to `true`.
171+
By default, autoscaling is disabled. However, if you have multiple `AzureAppConfigurationProvider` resources to produce multiple ConfigMaps/Secrets, you can enable horizontal pod autoscaling by setting `autoscaling.enabled` to `true`.
172172

173173
## Examples
174174

@@ -462,7 +462,7 @@ Assuming an App Configuration store has these key-values:
462462

463463
#### [default](#tab/default)
464464

465-
and the `configMapData.type` property is absent or set to `default`,
465+
And the `configMapData.type` property is absent or set to `default`,
466466

467467
``` yaml
468468
apiVersion: azconfig.io/v1
@@ -475,7 +475,7 @@ spec:
475475
configMapName: configmap-created-by-appconfig-provider
476476
```
477477

478-
the generated ConfigMap is populated with the following data:
478+
The generated ConfigMap is populated with the following data:
479479

480480
``` yaml
481481
data:
@@ -486,7 +486,7 @@ data:
486486

487487
#### [json](#tab/json)
488488

489-
and the `configMapData.type` property is set to `json`,
489+
And the `configMapData.type` property is set to `json`,
490490

491491
``` yaml
492492
apiVersion: azconfig.io/v1
@@ -502,7 +502,7 @@ spec:
502502
key: appSettings.json
503503
```
504504

505-
the generated ConfigMap is populated with the following data:
505+
The generated ConfigMap is populated with the following data:
506506

507507
``` yaml
508508
data:
@@ -512,7 +512,7 @@ data:
512512

513513
#### [yaml](#tab/yaml)
514514

515-
and the `configMapData.type` property is set to `yaml`,
515+
And the `configMapData.type` property is set to `yaml`,
516516

517517
``` yaml
518518
apiVersion: azconfig.io/v1
@@ -528,7 +528,7 @@ spec:
528528
key: appSettings.yaml
529529
```
530530

531-
the generated ConfigMap is populated with the following data:
531+
The generated ConfigMap is populated with the following data:
532532

533533
``` yaml
534534
data:
@@ -540,7 +540,7 @@ data:
540540

541541
#### [properties](#tab/properties)
542542

543-
and the `configMapData.type` property is set to `properties`,
543+
And the `configMapData.type` property is set to `properties`,
544544

545545
``` yaml
546546
apiVersion: azconfig.io/v1
@@ -556,7 +556,7 @@ spec:
556556
key: app.properties
557557
```
558558

559-
the generated ConfigMap is populated with the following data:
559+
The generated ConfigMap is populated with the following data:
560560

561561
``` yaml
562562
data:

0 commit comments

Comments
 (0)