Skip to content

Commit ffef13e

Browse files
authored
Merge pull request #112279 from SubhashVasarapu-MSFT/patch-44
(AzureCXP) fixes MicrosoftDocs/azure-docs#52794
2 parents 764054b + 981ee25 commit ffef13e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/application-gateway/ingress-controller-install-existing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ It is also possible to provide AGIC access to ARM via a Kubernetes secret.
126126
blob to be saved to Kubernetes.
127127

128128
```azurecli
129-
az ad sp create-for-rbac --subscription <subscription-uuid> --sdk-auth | base64 -w0
129+
az ad sp create-for-rbac --sdk-auth | base64 -w0
130130
```
131131

132132
2. Add the base64 encoded JSON blob to the `helm-config.yaml` file. More information on `helm-config.yaml` is in the
@@ -194,7 +194,7 @@ In the first few steps, we install Helm's Tiller on your Kubernetes cluster. Use
194194
## Alternatively you can use Service Principal credentials
195195
# armAuth:
196196
# type: servicePrincipal
197-
# secretJSON: <<Generate this value with: "az ad sp create-for-rbac --subscription <subscription-uuid> --sdk-auth | base64 -w0" >>
197+
# secretJSON: <<Generate this value with: "az ad sp create-for-rbac --sdk-auth | base64 -w0" >>
198198
199199
################################################################################
200200
# Specify if the cluster is RBAC enabled or not
@@ -231,7 +231,7 @@ In the first few steps, we install Helm's Tiller on your Kubernetes cluster. Use
231231
--set appgw.subscriptionId=subscription-uuid \
232232
--set appgw.shared=false \
233233
--set armAuth.type=servicePrincipal \
234-
--set armAuth.secretJSON=$(az ad sp create-for-rbac --subscription <subscription-uuid> --sdk-auth | base64 -w0) \
234+
--set armAuth.secretJSON=$(az ad sp create-for-rbac --sdk-auth | base64 -w0) \
235235
--set rbac.enabled=true \
236236
--set verbosityLevel=3 \
237237
--set kubernetes.watchNamespace=default \

0 commit comments

Comments
 (0)