You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-services/openai/concepts/models.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,7 +115,7 @@ See [model versions](../concepts/model-versions.md) to learn about how Azure Ope
115
115
116
116
### GPT-3.5 models
117
117
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.
119
119
120
120
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.
Copy file name to clipboardExpand all lines: articles/aks/manage-ssh-node-access.md
+47-3Lines changed: 47 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,12 @@ title: Manage SSH access on Azure Kubernetes Service cluster nodes
3
3
titleSuffix: Azure Kubernetes Service
4
4
description: Learn how to configure SSH on Azure Kubernetes Service (AKS) cluster nodes.
5
5
ms.topic: article
6
-
ms.date: 12/05/2023
6
+
ms.date: 12/15/2023
7
7
---
8
8
9
9
# Manage SSH for secure access to Azure Kubernetes Service (AKS) nodes
10
10
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.
12
12
13
13
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
14
14
@@ -17,6 +17,49 @@ This article describes how to update the SSH key (preview) on your AKS clusters
17
17
* 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].
18
18
* This feature supports Linux, Mariner, and CBLMariner node pools on existing clusters.
19
19
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
+
20
63
## Update SSH public key (preview) on an existing AKS cluster
21
64
22
65
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
30
73
31
74
The following are examples of this command:
32
75
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:
34
77
35
78
```azurecli
36
79
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
0 commit comments