Skip to content

Commit b940159

Browse files
Merge pull request #5347 from dcasati/dicasati-wip-1
fix typo: allowInsecureConnections
2 parents 21f7841 + ae0efb9 commit b940159

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-secure-kubernetes-online-endpoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,12 @@ TLS/SSL certificates expire and must be renewed. Typically, this happens every y
176176

177177
To disable TLS for a model deployed to Kubernetes:
178178

179-
1. Update the Azure Machine Learning extension with `allowInsercureconnection` set to `True`.
179+
1. Update the Azure Machine Learning extension with `allowInsecureConnections` set to `True`.
180180
1. Remove the `sslCname` configuration setting, along with the `sslSecret` or `sslPem` configuration settings.
181181
1. Run the following Azure CLI command in your Kubernetes cluster, and then perform an update. This command assumes that you're using AKS.
182182

183183
```azurecli
184-
az k8s-extension update --name <extension-name> --extension-type Microsoft.AzureML.Kubernetes --config enableInference=True inferenceRouterServiceType=LoadBalancer allowInsercureconnection=True --cluster-type managedClusters --cluster-name <your-AKS-cluster-name> --resource-group <your-RG-name> --scope cluster
184+
az k8s-extension update --name <extension-name> --extension-type Microsoft.AzureML.Kubernetes --config enableInference=True inferenceRouterServiceType=LoadBalancer allowInsecureConnections=True --cluster-type managedClusters --cluster-name <your-AKS-cluster-name> --resource-group <your-RG-name> --scope cluster
185185
```
186186

187187
> [!WARNING]

0 commit comments

Comments
 (0)