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/aks/http-proxy.md
+24-18Lines changed: 24 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ Some more complex solutions may require creating a chain of trust to establish s
19
19
## Limitations and other details
20
20
21
21
The following scenarios are **not** supported:
22
+
22
23
- Different proxy configurations per node pool
23
24
- Updating proxy settings post cluster creation
24
25
- User/Password authentication
@@ -31,10 +32,9 @@ By default, *httpProxy*, *httpsProxy*, and *trustedCa* have no value.
31
32
32
33
## Prerequisites
33
34
34
-
* An Azure subscription. If you don't have an Azure subscription, you can create a [free account](https://azure.microsoft.com/free).
35
-
* Latest version of [Azure CLI installed](/cli/azure/install-azure-cli).
35
+
The latest version of the Azure CLI. Run `az --version` to find the version, and run `az upgrade` to upgrade the version. If you need to install or upgrade, see [Install Azure CLI][install-azure-cli].
36
36
37
-
## Configuring an HTTP proxy using Azure CLI
37
+
## Configuring an HTTP proxy using the Azure CLI
38
38
39
39
Using AKS with an HTTP proxy is done at cluster creation, using the [az aks create][az-aks-create] command and passing in configuration as a JSON file.
40
40
@@ -51,13 +51,18 @@ The schema for the config file looks like this:
51
51
}
52
52
```
53
53
54
-
`httpProxy`: A proxy URL to use for creating HTTP connections outside the cluster. The URL scheme must be `http`.
55
-
`httpsProxy`: A proxy URL to use for creating HTTPS connections outside the cluster. If this is not specified, then `httpProxy` is used for both HTTP and HTTPS connections.
56
-
`noProxy`: A list of destination domain names, domains, IP addresses or other network CIDRs to exclude proxying.
57
-
`trustedCa`: A string containing the `base64 encoded` alternative CA certificate content. For now we only support `PEM` format. Another thing to note is that, for compatibility with Go-based components that are part of the Kubernetes system, the certificate MUST support `Subject Alternative Names(SANs)` instead of the deprecated Common Name certs.
54
+
*`httpProxy`: A proxy URL to use for creating HTTP connections outside the cluster. The URL scheme must be `http`.
55
+
*`httpsProxy`: A proxy URL to use for creating HTTPS connections outside the cluster. If this isn't specified, then `httpProxy` is used for both HTTP and HTTPS connections.
56
+
*`noProxy`: A list of destination domain names, domains, IP addresses or other network CIDRs to exclude proxying.
57
+
*`trustedCa`: A string containing the `base64 encoded` alternative CA certificate content. Currently only the `PEM` format is supported.
58
+
59
+
> [!IMPORTANT]
60
+
> For compatibility with Go-based components that are part of the Kubernetes system, the certificate **must** support `Subject Alternative Names(SANs)` instead of the deprecated Common Name certs.
58
61
59
62
Example input:
60
-
Note the CA cert should be the base64 encoded string of the PEM format cert content.
63
+
64
+
> [!NOTE]
65
+
> The CA certificate should be the base64 encoded string of the PEM format cert content.
61
66
62
67
```json
63
68
{
@@ -71,7 +76,7 @@ Note the CA cert should be the base64 encoded string of the PEM format cert cont
71
76
}
72
77
```
73
78
74
-
Create a file and provide values for *httpProxy*, *httpsProxy*, and *noProxy*. If your environment requires it, also provide a *trustedCa* value. Next, deploy a cluster, passing in your filename via the `http-proxy-config` flag.
79
+
Create a file and provide values for *httpProxy*, *httpsProxy*, and *noProxy*. If your environment requires it, provide a value for *trustedCa*. Next, deploy a cluster, passing in your filename using the `http-proxy-config` flag.
75
80
76
81
```azurecli
77
82
az aks create -n $clusterName -g $resourceGroup --http-proxy-config aks-proxy-config.json
@@ -81,7 +86,7 @@ Your cluster will initialize with the HTTP proxy configured on the nodes.
81
86
82
87
## Configuring an HTTP proxy using Azure Resource Manager (ARM) templates
83
88
84
-
Deploying an AKS cluster with an HTTP proxy configured via ARM template is straightforward. The same schema used for CLI deployment exists in the `Microsoft.ContainerService/managedClusters` definition under properties:
89
+
Deploying an AKS cluster with an HTTP proxy configured using an ARM template is straightforward. The same schema used for CLI deployment exists in the `Microsoft.ContainerService/managedClusters` definition under properties:
85
90
86
91
```json
87
92
"properties": {
@@ -97,34 +102,34 @@ Deploying an AKS cluster with an HTTP proxy configured via ARM template is strai
97
102
}
98
103
```
99
104
100
-
In your template, provide values for *httpProxy*, *httpsProxy*, and *noProxy*. If necessary, also provide a value for `*trustedCa*. Deploy the template, and your cluster should initialize with your HTTP proxy configured on the nodes.
105
+
In your template, provide values for *httpProxy*, *httpsProxy*, and *noProxy*. If necessary, provide a value for *trustedCa*. Deploy the template, and your cluster should initialize with your HTTP proxy configured on the nodes.
101
106
102
107
## Handling CA rollover
103
108
104
-
Values for *httpProxy*, *httpsProxy*, and *noProxy*cannot be changed after cluster creation. However, to support rolling CA certs, the value for *trustedCa* can be changed and applied to the cluster with the [az aks update][az-aks-update] command.
109
+
Values for *httpProxy*, *httpsProxy*, and *noProxy*can't be changed after cluster creation. However, to support rolling CA certs, the value for *trustedCa* can be changed and applied to the cluster with the [az aks update][az-aks-update] command.
105
110
106
-
For example, assuming a new file has been created with the base64 encoded string of the new CA cert called *aks-proxy-config-2.json*, the following action will update the cluster:
111
+
For example, assuming a new file has been created with the base64 encoded string of the new CA cert called *aks-proxy-config-2.json*, the following action updates the cluster:
107
112
108
113
```azurecli
109
114
az aks update -n $clusterName -g $resourceGroup --http-proxy-config aks-proxy-config-2.json
110
115
```
111
116
112
117
## Monitoring add-on configuration
113
118
114
-
When using the HTTP proxy with the Monitoring add-on, the following configurations are supported:
119
+
The HTTP proxy with the Monitoring add-on supports the following configurations:
115
120
116
121
- Outbound proxy without authentication
117
122
- Outbound proxy with username & password authentication
118
123
- Outbound proxy with trusted cert for Log Analytics endpoint
119
124
120
-
The following configurations are not supported:
125
+
The following configurations aren't supported:
121
126
122
-
- The Custom Metrics and Recommended Alerts features are not supported when using proxy with trusted cert
123
-
- Outbound proxy is not supported with Azure Monitor Private Link Scope (AMPLS)
127
+
- The Custom Metrics and Recommended Alerts features aren't supported when you use a proxy with trusted certificates
128
+
- Outbound proxy isn't supported with Azure Monitor Private Link Scope (AMPLS)
124
129
125
130
## Next steps
126
-
- For more on the network requirements of AKS clusters, see [control egress traffic for cluster nodes in AKS][aks-egress].
127
131
132
+
For more information regarding the network requirements of AKS clusters, see [control egress traffic for cluster nodes in AKS][aks-egress].
128
133
129
134
<!-- LINKS - internal -->
130
135
[aks-egress]: ./limit-egress-traffic.md
@@ -135,3 +140,4 @@ The following configurations are not supported:
Copy file name to clipboardExpand all lines: articles/azure-video-indexer/language-support.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@ ms.date: 01/06/2023
13
13
14
14
This article provides a comprehensive list of language support by service features in Azure Video Indexer. For the list and definitions of all the features, see [Overview](video-indexer-overview.md).
15
15
16
-
Some languages are supported only through the API (see [Get Supported Languages](https://api-portal.videoindexer.ai/api-details#api=Operations&operation=Get-Supported-Languages)) and not through the Video Indexer website or widgets. To make sure a language is supported for search, transcription, or translation by the Azure Video Indexer website and widgets, see the [frontend language
17
-
support table](#language-support-in-frontend-experiences) further below.
16
+
Some languages are supported only through the API (see [Get Supported Languages](https://api-portal.videoindexer.ai/api-details#api=Operations&operation=Get-Supported-Languages)) and not through the Video Indexer website or widgets. To make sure a language is supported for search, transcription, or translation by the Azure Video Indexer website and widgets, see the [front end language
17
+
support table](#language-support-in-front-end-experiences) further below.
18
18
19
19
## API language support
20
20
@@ -140,9 +140,9 @@ When [uploading a video](https://api-portal.videoindexer.ai/api-details#api=Oper
140
140
> Language identification (LID) and Multi-language identification (MLID) compares speech at the language level, such as English and German.
141
141
> Do not include multiple locales of the same language in the custom languages list.
142
142
143
-
## Language support in frontend experiences
143
+
## Language support in front end experiences
144
144
145
-
The following table describes language support in the Azure Video Indexer frontend experiences.
145
+
The following table describes language support in the Azure Video Indexer front end experiences.
146
146
147
147
* website - the website column lists supported languages for the [Azure Video Indexer website](https://aka.ms/vi-portal-link). For for more information, see [Get started](video-indexer-get-started.md).
148
148
* widgets - the [widgets](video-indexer-embed-widgets.md) column lists supported languages for translating the index file. For for more information, see [Get started](video-indexer-embed-widgets.md).
Copy file name to clipboardExpand all lines: articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-concept-recommendations.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ The following section describes workload-based heuristics you may find in the Az
56
56
Currently Advisor will only show at most four replicated table candidates at once with clustered columnstore indexes prioritizing the highest activity.
57
57
58
58
> [!IMPORTANT]
59
-
> The replicated table recommendation is not full proof and does not take into account data movement operations. We are working on adding this as a heuristic but in the meantime, you should always validate your workload after applying the recommendation. To learn more about replicated tables, visit the following [documentation](design-guidance-for-replicated-tables.md#what-is-a-replicated-table).
59
+
> The replicated table recommendation is not fool proof and does not take into account data movement operations. We are working on adding this as a heuristic but in the meantime, you should always validate your workload after applying the recommendation. To learn more about replicated tables, visit the following [documentation](design-guidance-for-replicated-tables.md#what-is-a-replicated-table).
60
60
61
61
62
62
## Adaptive (Gen2) cache utilization
@@ -68,4 +68,4 @@ Query performance can degrade when there is high tempdb contention. Tempdb cont
68
68
69
69
## Data loading misconfiguration
70
70
71
-
You should always load data from a storage account in the same region as your dedicated SQL pool to minimize latency. Use the [COPY statement for high throughput data ingestion](/sql/t-sql/statements/copy-into-transact-sql?view=azure-sqldw-latest&preserve-view=true) and split your staged files in your storage account to maximize throughput. If you can't use the COPY statement, you can use the SqlBulkCopy API or bcp with a high batch size for better throughput. See [Best practices for data loading](../sql/data-loading-best-practices.md) for additional data loading guidance.
71
+
You should always load data from a storage account in the same region as your dedicated SQL pool to minimize latency. Use the [COPY statement for high throughput data ingestion](/sql/t-sql/statements/copy-into-transact-sql?view=azure-sqldw-latest&preserve-view=true) and split your staged files in your storage account to maximize throughput. If you can't use the COPY statement, you can use the SqlBulkCopy API or bcp with a high batch size for better throughput. See [Best practices for data loading](../sql/data-loading-best-practices.md) for additional data loading guidance.
0 commit comments