Skip to content

Commit 89a84e2

Browse files
authored
Merge pull request #261368 from MicrosoftDocs/main
12/15/2023 AM Publish
2 parents 75cc183 + 68a1999 commit 89a84e2

File tree

75 files changed

+2016
-1624
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2016
-1624
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23678,6 +23678,11 @@
2367823678
"source_path_from_root": "/articles/aks/ai-toolchain-operator.md",
2367923679
"redirect_url": "https://azure.microsoft.com/updates/preview-ai-toolchain-operator-addon-for-aks/",
2368023680
"redirect_document_id": false
23681+
},
23682+
{
23683+
"source_path_from_root": "/articles/reliability/disaster-recovery-guidance-overview.md",
23684+
"redirect_url": "/azure/reliability/reliability-guidance-overview",
23685+
"redirect_document_id": false
2368123686
}
2368223687

2368323688
]

articles/ai-services/openai/concepts/models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ See [model versions](../concepts/model-versions.md) to learn about how Azure Ope
115115

116116
### GPT-3.5 models
117117

118-
GPT-3.5 Turbo is used with the Chat Completion API. GPT-3.5 Turbo (0301) can also be used with the Completions API. GPT3.5 Turbo (0613) only supports the Chat Completions API.
118+
GPT-3.5 Turbo is used with the Chat Completion API. GPT-3.5 Turbo version 0301 can also be used with the Completions API. GPT-3.5 Turbo versions 0613 and 1106 only support the Chat Completions API.
119119

120120
GPT-3.5 Turbo version 0301 is the first version of the model released. Version 0613 is the second version of the model and adds function calling support.
121121

articles/aks/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,8 @@
349349
href: reduce-latency-ppg.md
350350
- name: Cluster Autoscaler
351351
href: cluster-autoscaler.md
352+
- name: Node autoprovision
353+
href: node-autoprovision.md
352354
- name: Availability Zones
353355
href: availability-zones.md
354356
- name: Cluster management

articles/aks/manage-ssh-node-access.md

Lines changed: 47 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Manage SSH access on Azure Kubernetes Service cluster nodes
33
titleSuffix: Azure Kubernetes Service
44
description: Learn how to configure SSH on Azure Kubernetes Service (AKS) cluster nodes.
55
ms.topic: article
6-
ms.date: 12/05/2023
6+
ms.date: 12/15/2023
77
---
88

99
# Manage SSH for secure access to Azure Kubernetes Service (AKS) nodes
1010

11-
This article describes how to update the SSH key (preview) on your AKS clusters or node pools.
11+
This article describes how to configure the SSH key (preview) on your AKS clusters or node pools, during initial deployment or at a later time.
1212

1313
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
1414

@@ -17,6 +17,49 @@ This article describes how to update the SSH key (preview) on your AKS clusters
1717
* You need the Azure CLI version 2.46.0 or later installed and configured. If you need to install or upgrade, see [Install Azure CLI][install-azure-cli].
1818
* This feature supports Linux, Mariner, and CBLMariner node pools on existing clusters.
1919

20+
## Install the `aks-preview` Azure CLI extension
21+
22+
[!INCLUDE [preview features callout](includes/preview/preview-callout.md)]
23+
24+
1. Install the aks-preview extension using the [`az extension add`][az-extension-add] command.
25+
26+
```azurecli
27+
az extension add --name aks-preview
28+
```
29+
30+
2. Update to the latest version of the extension using the [`az extension update`][az-extension-update] command.
31+
32+
```azurecli
33+
az extension update --name aks-preview
34+
```
35+
36+
## Create an AKS cluster with SSH key (preview)
37+
38+
Use the [az aks create][az-aks-create] command to deploy an AKS cluster with an SSH public key. You can either specify the key or a key file using the `--ssh-key-value` argument.
39+
40+
|SSH parameter |Description |Default value |
41+
|-----|-----|-----|
42+
|--generate-ssh-key |If you don't have your own SSH key, specify `--generate-ssh-key`. The Azure CLI first looks for the key in the `~/.ssh/` directory. If the key exists, it's used. If the key doesn't exist, the Azure CLI automatically generates a set of SSH keys and saves them in the specified or default directory.||
43+
|--ssh-key-vaule |Public key path or key contents to install on node VMs for SSH access. For example, `ssh-rsa AAAAB...snip...UcyupgH azureuser@linuxvm`.|`~.ssh\id_rsa.pub` |
44+
|--no-ssh-key | If you don't require an SSH key, specify this argument. However, AKS automatically generates a set of SSH keys because the Azure Virtual Machine resource dependency doesn’t support an empty SSH key file. As a result, the keys aren't returned and can't be used to SSH into the node VMs. ||
45+
46+
>[!NOTE]
47+
>If no parameters are specified, the Azure CLI defaults to referencing the SSH keys stored in the `~/.ssh/` directory. If the keys aren't found in the directory, the command returns a `key not found` error message.
48+
49+
The following are examples of this command:
50+
51+
* To create a cluster and use the default generated SSH keys:
52+
53+
```azurecli
54+
az aks create --name myAKSCluster --resource-group MyResourceGroup --generate-ssh-key
55+
```
56+
57+
* To specify an SSH public key file, specify it with the `--ssh-key-value` argument:
58+
59+
```azurecli
60+
az aks create --name myAKSCluster --resource-group MyResourceGroup --ssh-key-value ~/.ssh/id_rsa.pub
61+
```
62+
2063
## Update SSH public key (preview) on an existing AKS cluster
2164
2265
Use the [az aks update][az-aks-update] command to update the SSH public key on your cluster. This operation updates the key on all node pools. You can either specify the key or a key file using the `--ssh-key-value` argument.
@@ -30,7 +73,7 @@ Use the [az aks update][az-aks-update] command to update the SSH public key on y
3073
3174
The following are examples of this command:
3275
33-
* To specify the new SSH public key value, include the `--ssh-key-value` argument:
76+
* To specify a new SSH public key value, include the `--ssh-key-value` argument:
3477
3578
```azurecli
3679
az aks update --name myAKSCluster --resource-group MyResourceGroup --ssh-key-value 'ssh-rsa AAAAB3Nza-xxx'
@@ -54,6 +97,7 @@ To help troubleshoot any issues with SSH connectivity to your clusters nodes, yo
5497
<!-- LINKS - internal -->
5598
[install-azure-cli]: /cli/azure/install-azure-cli
5699
[az-aks-update]: /cli/azure/aks#az-aks-update
100+
[az-aks-create]: /cli/azure/aks#az-aks-create
57101
[view-kubelet-logs]: kubelet-logs.md
58102
[view-master-logs]: monitor-aks-reference.md#resource-logs
59103
[node-image-upgrade]: node-image-upgrade.md

0 commit comments

Comments
 (0)