Skip to content

Commit 53626ad

Browse files
committed
Merge branch 'update-230102' of https://github.com/jiaochenlu/azure-docs-pr into update-230102
2 parents d79c4a3 + 6f2dc09 commit 53626ad

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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
@@ -169,7 +169,7 @@ TLS/SSL certificates expire and must be renewed. Typically, this happens every y
169169
If you directly configured the PEM files in the extension deployment command before, you need to run the extension update command and specify the new PEM file's path:
170170

171171
```azurecli
172-
az k8s-extension update --name <extension-name> --extension-type Microsoft.AzureML.Kubernetes --config-protected sslCertPemFile=<file-path-to-cert-PEM> sslKeyPemFile=<file-path-to-cert-KEY> --cluster-type managedClusters --cluster-name <your-AKS-cluster-name> --resource-group <your-RG-name> --scope cluster
172+
az k8s-extension update --name <extension-name> --extension-type Microsoft.AzureML.Kubernetes --config sslCname=<ssl cname> --config-protected sslCertPemFile=<file-path-to-cert-PEM> sslKeyPemFile=<file-path-to-cert-KEY> --cluster-type managedClusters --cluster-name <your-AKS-cluster-name> --resource-group <your-RG-name> --scope cluster
173173
```
174174

175175
## Disable TLS
@@ -181,7 +181,7 @@ To disable TLS for a model deployed to Kubernetes:
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 create --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 allowInsercureconnection=True --cluster-type managedClusters --cluster-name <your-AKS-cluster-name> --resource-group <your-RG-name> --scope cluster
185185
```
186186

187187
> [!WARNING]

articles/machine-learning/how-to-troubleshoot-kubernetes-compute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ For AKS clusters:
142142

143143

144144
For an AKS cluster or an Azure Arc enabled Kubernetes cluster:
145-
1. Check if the Kubernetes API server is accessible by running `kubectl` command in cluster.
145+
* Check if the Kubernetes API server is accessible by running `kubectl` command in cluster.
146146

147147
#### ERROR: ClusterNotReachable
148148

articles/machine-learning/how-to-troubleshoot-kubernetes-extension.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ You need to use the same config settings as above, and you need to disable `job/
230230
#### Volcano scheduler integration supporting cluster autoscaler
231231
As discussed in this [thread](https://github.com/volcano-sh/volcano/issues/2558) , the **gang plugin** is not working well with the cluster autoscaler(CA) and also the node autoscaler in AKS.
232232
233-
If you use the volcano that comes with the AzureML extension via setting `installVolcano=true`, the extension will have a scheduler config by default, which configures the **gang** plugin to prevent job deadlock. Therefore, the the cluster autoscaler(CA) in AKS cluster will not be supported with the volcano installed by extension.
233+
If you use the volcano that comes with the AzureML extension via setting `installVolcano=true`, the extension will have a scheduler config by default, which configures the **gang** plugin to prevent job deadlock. Therefore, the cluster autoscaler(CA) in AKS cluster will not be supported with the volcano installed by extension.
234234
235235
For the case above, if you prefer the AKS cluster autoscaler could work normally, you can configure this `volcanoScheduler.schedulerConfigMap` parameter through updating extension, and specify a custom config of **no gang** volcano scheduler to it, for example:
236236
@@ -255,7 +255,7 @@ volcano-scheduler.conf: |
255255
256256
To use this config in your AKS cluster, you need to follow the steps below:
257257
1. Create a configmap file with the above config in the azureml namespace. This namespace will generally be created when you install the AzureML extension.
258-
1. Set `volcanoScheduler.schedulerConfigMap=<configmap name>` in the extension config to apply this configmap. And you need to skip the resource validation when install the extension by configuring `amloperator.skipResourceValidation=true`. For example:
258+
1. Set `volcanoScheduler.schedulerConfigMap=<configmap name>` in the extension config to apply this configmap. And you need to skip the resource validation when installing the extension by configuring `amloperator.skipResourceValidation=true`. For example:
259259
```azurecli
260260
az k8s-extension update --name <extension-name> --extension-type Microsoft.AzureML.Kubernetes --config volcanoScheduler.schedulerConfigMap=<configmap name> amloperator.skipResourceValidation=true --cluster-type managedClusters --cluster-name <your-AKS-cluster-name> --resource-group <your-RG-name> --scope cluster
261261
```

articles/machine-learning/how-to-troubleshoot-online-endpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ Below is a list of reasons you might run into this error when creating/updating
523523
To mitigate this error, refer to the following steps:
524524
* Check the `node selector` definition of the `instance type` you used, and `node label` configuration of your cluster nodes.
525525
* Check `instance type` and the node SKU size for AKS cluster or the node resource for Arc-Kubernetes cluster.
526-
* If the cluster is under-resourced, you can reduce the instance type resource requirement or use the another instance type with smaller resource required.
526+
* If the cluster is under-resourced, you can reduce the instance type resource requirement or use another instance type with smaller resource required.
527527
* If the cluster has no more resource to meet the requirement of the deployment, delete some deployment to release resources.
528528

529529

0 commit comments

Comments
 (0)