Skip to content

Commit 20e84fa

Browse files
author
Carey MacDonald
committed
Merge branch 'master' into updates
2 parents 4791ec7 + 480e7cc commit 20e84fa

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

articles/aks/windows-container-cli.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: mlearned
66

77
ms.service: container-service
88
ms.topic: article
9-
ms.date: 06/17/2019
9+
ms.date: 01/27/2020
1010
ms.author: mlearned
1111

1212
#Customer intent: As a developer or cluster operator, I want to quickly create an AKS cluster and deploy a Windows Server container so that I can see how to run applications running on a Windows Server container using the managed Kubernetes service in Azure.
@@ -134,7 +134,7 @@ az aks create \
134134
--name myAKSCluster \
135135
--node-count 2 \
136136
--enable-addons monitoring \
137-
--kubernetes-version 1.14.6 \
137+
--kubernetes-version 1.15.7 \
138138
--generate-ssh-keys \
139139
--windows-admin-password $PASSWORD_WIN \
140140
--windows-admin-username azureuser \
@@ -160,7 +160,7 @@ az aks nodepool add \
160160
--os-type Windows \
161161
--name npwin \
162162
--node-count 1 \
163-
--kubernetes-version 1.14.6
163+
--kubernetes-version 1.15.7
164164
```
165165

166166
The above command creates a new node pool named *npwin* and adds it to the *myAKSCluster*. When creating a node pool to run Windows Server containers, the default value for *node-vm-size* is *Standard_D2s_v3*. If you choose to set the *node-vm-size* parameter, please check the list of [restricted VM sizes][restricted-vm-sizes]. The minimum recommended size is *Standard_D2s_v3*. The above command also uses the default subnet in the default vnet created when running `az aks create`.
@@ -189,8 +189,8 @@ The following example output shows the all the nodes in the cluster. Make sure t
189189

190190
```
191191
NAME STATUS ROLES AGE VERSION
192-
aks-nodepool1-12345678-vmssfedcba Ready agent 13m v1.14.6
193-
aksnpwin987654 Ready agent 108s v1.14.6
192+
aks-nodepool1-12345678-vmssfedcba Ready agent 13m v1.15.7
193+
aksnpwin987654 Ready agent 108s v1.15.7
194194
```
195195

196196
## Run the application

articles/container-instances/container-instances-container-group-ssl.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ ms.date: 04/03/2019
88

99
This article shows how to create a [container group](container-instances-container-groups.md) with an application container and a sidecar container running an SSL provider. By setting up a container group with a separate SSL endpoint, you enable SSL connections for your application without changing your application code.
1010

11-
You set up a container group consisting of two containers:
11+
You set up an example container group consisting of two containers:
1212
* An application container that runs a simple web app using the public Microsoft [aci-helloworld](https://hub.docker.com/_/microsoft-azuredocs-aci-helloworld) image.
1313
* A sidecar container running the public [Nginx](https://hub.docker.com/_/nginx) image, configured to use SSL.
1414

15-
In this example, the container group only exposes port 443 for Nginx with its public IP address. Nginx routes HTTPS requests to the companion web app, which listens internally on port 80. You can adapt the example for container apps that listen on other ports.
15+
In this example, the container group only exposes port 443 for Nginx with its public IP address. Nginx routes HTTPS requests to the companion web app, which listens internally on port 80. You can adapt the example for container apps that listen on other ports. See [Next steps](#next-steps) for other approaches to enabling SSL in a container group.
1616

1717
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
1818

@@ -229,4 +229,10 @@ This article showed you how to set up an Nginx container to enable SSL connectio
229229

230230
While this article uses Nginx in the sidecar, you can use another SSL provider such as [Caddy](https://caddyserver.com/).
231231

232-
Another approach to enabling SSL in a container group is to deploy the group in an [Azure virtual network](container-instances-vnet.md) with an [Azure application gateway](../application-gateway/overview.md). The gateway can be set up as an SSL endpoint. See a sample [deployment template](https://github.com/Azure/azure-quickstart-templates/tree/master/201-aci-wordpress-vnet) you can adapt to enable SSL termination on the gateway.
232+
If you deploy your container group in an [Azure virtual network](container-instances-vnet.md), you can consider other options to enable an SSL endpoint for a backend container instance, including:
233+
234+
* [Azure Functions Proxies](../azure-functions/functions-proxies.md)
235+
* [Azure API Management](../api-management/api-management-key-concepts.md)
236+
* [Azure Application Gateway](../application-gateway/overview.md)
237+
238+
To use an application gateway, see a sample [deployment template](https://github.com/Azure/azure-quickstart-templates/tree/master/201-aci-wordpress-vnet).

articles/load-balancer/TOC.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
href: quickstart-create-basic-load-balancer-powershell.md
2727
- name: Template
2828
href: load-balancer-get-started-internet-arm-template.md
29-
- name: REST API
30-
href: create-load-balancer-rest-api.md
3129

3230
- name: Tutorials
3331
items:

0 commit comments

Comments
 (0)