Skip to content

Commit e325f9f

Browse files
committed
fix example store name
1 parent 1737c3e commit e325f9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-app-configuration/integrate-kubernetes-deployment-helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ helm upgrade --install -f myConfig.yaml -f mySecrets.yaml "example" ./mychart
181181
If there is a concern for putting sensitive data in persistent storage, export content of key vault references to memory. Besides files Helm also allows passing literal key values with argument **--set**. Learn more about [Helm usage](https://helm.sh/docs/intro/using_helm/).
182182

183183
```powershell
184-
$secrets = az appconfig kv list -n myAppConfiguration1157 --key "secrets.*" --resolve-keyvault --query "[*].{name:key, value:value}" | ConvertFrom-Json
184+
$secrets = az appconfig kv list -n myAppConfiguration --key "secrets.*" --resolve-keyvault --query "[*].{name:key, value:value}" | ConvertFrom-Json
185185
186186
foreach ($secret in $secrets) {
187187
$keyvaules += $secret.name + "=" + $secret.value + ","

0 commit comments

Comments
 (0)