Skip to content

Commit 107ab55

Browse files
authored
Merge pull request #109148 from TimShererWithAquent/us1679050az
Change SSL to TLS per 1679050
2 parents 15fdc5c + 84a797d commit 107ab55

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/machine-learning/azure-machine-learning-release-notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ At the time of this release, the following browsers are supported: Chrome, Firef
920920
+ Updated interface to create a `RawDataContext` to only require the data and the `AutoMLBaseSettings` object.
921921
+ Allow AutoML users to drop training series that are not long enough when forecasting. - Allow AutoML users to drop grains from the test set that does not exist in the training set when forecasting.
922922
+ **azure-cli-ml**
923-
+ You can now update the SSL certificate for the scoring endpoint deployed on AKS cluster both for Microsoft generated and customer certificate.
923+
+ You can now update the TLS/SSL certificate for the scoring endpoint deployed on AKS cluster both for Microsoft generated and customer certificate.
924924
+ **azureml-automl-core**
925925
+ Fixed an issue in AutoML where rows with missing labels were not removed properly.
926926
+ Improved error logging in AutoML; full error messages will now always be written to the log file.
@@ -951,7 +951,7 @@ At the time of this release, the following browsers are supported: Chrome, Firef
951951
+ Supported importing HTTP csv/tsv files in dataset python SDK.
952952
+ Deprecated the Workspace.setup() method. Warning message shown to users suggests using create() or get()/from_config() instead.
953953
+ Added Environment.add_private_pip_wheel(), which enables uploading private custom python packages `whl`to the workspace and securely using them to build/materialize the environment.
954-
+ You can now update the SSL certificate for the scoring endpoint deployed on AKS cluster both for Microsoft generated and customer certificate.
954+
+ You can now update the TLS/SSL certificate for the scoring endpoint deployed on AKS cluster both for Microsoft generated and customer certificate.
955955
+ **azureml-explain-model**
956956
+ Added parameter to add a model ID to explanations on upload.
957957
+ Added `is_raw` tagging to explanations in memory and upload.

articles/machine-learning/resource-known-issues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Take these actions for the following errors:
201201
202202
Updates to Azure Machine Learning components installed in an Azure Kubernetes Service cluster must be manually applied.
203203
204-
You can apply these updates by detaching the cluster from the Azure Machine Learning workspace, and then reattaching the cluster to the workspace. If SSL is enabled in the cluster, you will need to supply the SSL certificate and private key when reattaching the cluster.
204+
You can apply these updates by detaching the cluster from the Azure Machine Learning workspace, and then reattaching the cluster to the workspace. If TLS is enabled in the cluster, you will need to supply the TLS/SSL certificate and private key when reattaching the cluster.
205205

206206
```python
207207
compute_target = ComputeTarget(workspace=ws, name=clusterWorkspaceName)
@@ -222,7 +222,7 @@ compute_target = ComputeTarget.attach(workspace=ws, name=args.clusterWorkspaceNa
222222
compute_target.wait_for_completion(show_output=True)
223223
```
224224

225-
If you no longer have the SSL certificate and private key, or you are using a certificate generated by Azure Machine Learning, you can retrieve the files prior to detaching the cluster by connecting to the cluster using `kubectl` and retrieving the secret `azuremlfessl`.
225+
If you no longer have the TLS/SSL certificate and private key, or you are using a certificate generated by Azure Machine Learning, you can retrieve the files prior to detaching the cluster by connecting to the cluster using `kubectl` and retrieving the secret `azuremlfessl`.
226226

227227
```bash
228228
kubectl get secret/azuremlfessl -o yaml

0 commit comments

Comments
 (0)