Skip to content

Commit 1932bd1

Browse files
authored
Merge pull request #50113 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents e7ea52a + 0db1043 commit 1932bd1

File tree

12 files changed

+21
-16
lines changed

12 files changed

+21
-16
lines changed

articles/active-directory/devices/hybrid-azuread-join-plan.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ Beginning with version 1.1.819.0, Azure AD Connect provides you with a wizard to
128128

129129
- [Configure hybrid Azure Active Directory join for federated domains](hybrid-azuread-join-federated-domains.md)
130130

131+
131132
- [Configure hybrid Azure Active Directory join for managed domains](hybrid-azuread-join-managed-domains.md)
132133

133134

articles/aks/create-cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The following options are available with the `az aks create` command. See the [A
4444
| `--enable-rbac` `-r` | Enable Kubernetes Role-Based Access Control. | no |
4545
| `--generate-ssh-keys` | Generate SSH public and private key files if missing. | no |
4646
| `--kubernetes-version` `-k` | The version of Kubernetes to use for creating the cluster, such as '1.7.9' or '1.9.6'. | no |
47-
| `--locaton` `-l` | Location for the auto-created resource group | no |
47+
| `--location` `-l` | Location for the auto-created resource group | no |
4848
| `--max-pods` `-m` | The maximum number of pods deployable to a node. | no |
4949
| `--network-plugin` | The Kubernetes network plugin to use. | no |
5050
| `--no-ssh-key` `-x` | Do not use or create a local SSH key. | no |

articles/aks/intro-kubernetes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ For more information, see [Upgrade an Azure Kubernetes Service (AKS) cluster][ak
5050

5151
## HTTP application routing
5252

53-
The HTTP Application Routing solution makes it easy to access applications deployed to your AKS cluster. When enabled, the HTTP application routing solution configures an ingress controller in your AKS cluster. As applications are deployed, publically accessible DNS names are auto configured.
53+
The HTTP Application Routing solution makes it easy to access applications deployed to your AKS cluster. When enabled, the HTTP application routing solution configures an ingress controller in your AKS cluster. As applications are deployed, publicly accessible DNS names are auto configured.
5454

5555
For more information, see [HTTP application routing][aks-http-routing].
5656

articles/aks/kubernetes-draft.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: iainfou
1212

1313
# Use Draft with Azure Kubernetes Service (AKS)
1414

15-
Draft is an open-source tool that helps package and deploy application containers in a Kubernetes cluster, leaving you free to concentrate on the dev cycle -- the "inner loop" of concentrated development. Draft works as the code is being developed, but before committing to version control. With Draft, you can quickly redeploy an application to Kubernetes as code changes occur. For more information on Draft, see the [Draft documentation on Github][draft-documentation].
15+
Draft is an open-source tool that helps package and deploy application containers in a Kubernetes cluster, leaving you free to concentrate on the dev cycle - the "inner loop" of concentrated development. Draft works as the code is being developed, but before committing to version control. With Draft, you can quickly redeploy an application to Kubernetes as code changes occur. For more information on Draft, see the [Draft documentation on Github][draft-documentation].
1616

1717
This article shows you how to use Draft with a Kubernetes cluster on AKS.
1818

articles/aks/tutorial-kubernetes-prepare-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ To see the running application, enter http://localhost:8080 in a local web brows
9494

9595
## Clean up resources
9696

97-
Now that application functionality has been validated, the running containers can be stopped and removed. Do not delete the container images - in the next tutorial, the *azure-vote-front* image is uploaded to an Azure Container Registry instance
97+
Now that the application's functionality has been validated, the running containers can be stopped and removed. Do not delete the container images - in the next tutorial, the *azure-vote-front* image is uploaded to an Azure Container Registry instance.
9898

9999
Stop and remove the container instances and resources with the [docker-compose down][docker-compose-down] command:
100100

@@ -130,4 +130,4 @@ Advance to the next tutorial to learn how to store container images in Azure Con
130130
[git]: https://git-scm.com/downloads
131131

132132
<!-- LINKS - internal -->
133-
[aks-tutorial-prepare-acr]: ./tutorial-kubernetes-prepare-acr.md
133+
[aks-tutorial-prepare-acr]: ./tutorial-kubernetes-prepare-acr.md

articles/application-insights/app-insights-sampling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ Instead of setting the sampling parameter in the .config file, you can programma
279279
using Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel;
280280
...
281281

282-
var builder = TelemetryConfiguration.Active.GetTelemetryProcessorChainBuilder();
282+
var builder = TelemetryConfiguration.Active.TelemetryProcessorChainBuilder;
283283
builder.UseSampling(10.0); // percentage
284284
285285
// If you have other telemetry processors:

articles/automation/automation-hrw-run-runbooks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ By default, runbooks run in the context of the Local System account for Windows
4141

4242
You can use [Credential](automation-credentials.md) and [Certificate](automation-certificates.md) assets in your runbook with cmdlets that allow you to specify credentials so you can authenticate to different resources. The following example shows a portion of a runbook that restarts a computer. It retrieves credentials from a credential asset and the name of the computer from a variable asset and then uses these values with the Restart-Computer cmdlet.
4343

44-
```azurepowershell-interactive
45-
$Cred = Get-AzureRmAutomationCredential -ResourceGroupName "ResourceGroup01" -Name "MyCredential"
46-
$Computer = Get-AzureRmAutomationVariable -ResourceGroupName "ResourceGroup01" -Name "ComputerName"
44+
```powershell
45+
$Cred = Get-AutomationPSCredential -Name "MyCredential"
46+
$Computer = Get-AutomationVariable -Name "ComputerName"
4747
4848
Restart-Computer -ComputerName $Computer -Credential $Cred
4949
```

articles/cloud-shell/quickstart-powershell.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ TestVm2 westus Succeeded Standard_DS1_v2 WindowsServer 2016-Datace
115115
```
116116

117117
> [!NOTE]
118-
> You may notice that the second time when you type `dir`, the cloud shell is able to display the items much faster.
118+
> You may notice that the second time when you type `dir`, the Cloud Shell is able to display the items much faster.
119119
> This is because the child items are cached in memory for a better user experience.
120120
However, you can always use `dir -Force` to get fresh data.
121121

@@ -254,7 +254,6 @@ mywebapp3 Running MyResourceGroup3 {mywebapp3.azurewebsites.net... So
254254

255255
## SSH
256256

257-
[Win32-OpenSSH](https://github.com/PowerShell/Win32-OpenSSH) is available in PowerShell Cloud Shell.
258257
To authenticate to servers or VMs using SSH, generate the public-private key pair in Cloud Shell and
259258
publish the public key to `authorized_keys` on the remote machine, such as `/home/user/.ssh/authorized_keys`.
260259

articles/logic-apps/workflow-definition-language-functions-reference.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3755,6 +3755,8 @@ And returns this string as an example result: `"http://feeds.reuters.com/reuters
37553755

37563756
<a name="triggerMultipartBody"></a>
37573757

3758+
### triggerMultipartBody
3759+
37583760
Return the body for a specific part in a trigger's output that has multiple parts.
37593761

37603762
```

articles/service-fabric/service-fabric-reliable-services-diagnostics.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.devlang: dotnet
1313
ms.topic: conceptual
1414
ms.tgt_pltfrm: NA
1515
ms.workload: NA
16-
ms.date: 6/28/2018
16+
ms.date: 8/24/2018
1717
ms.author: dekapur
1818

1919
---
@@ -117,7 +117,10 @@ The Reliable Services runtime emits the following events under the `Service Fabr
117117

118118
Counter name | Description |
119119
| --- | --- |
120-
| Item Count | The number of keys in the store.|
120+
| Item Count | The number of items in the store.|
121+
| Disk Size | The total disk size, in bytes, of checkpoint files for the store.|
122+
| Checkpoint File Write Bytes/sec | The number of bytes written per second for the most recent checkpoint file.|
123+
| Copy Disk Transfer Bytes/sec | The number of disk bytes read (on the primary replica) or written (on a secondary replica) per second during a store copy.|
121124

122125
## Next steps
123126
[EventSource providers in PerfView](https://blogs.msdn.microsoft.com/vancem/2012/07/09/introduction-tutorial-logging-etw-events-in-c-system-diagnostics-tracing-eventsource/)

0 commit comments

Comments
 (0)