Skip to content

Commit ac0ecf3

Browse files
FrenchBenMisty Stanley-Jones
authored andcommitted
Edition vpc (docker#1797)
* Added BYO VPC links for aws and added beta channel for azure Signed-off-by: French Ben <[email protected]>
1 parent f3bf3f1 commit ac0ecf3

File tree

5 files changed

+80
-26
lines changed

5 files changed

+80
-26
lines changed

_includes/d4a_buttons.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
11
{% capture aws_button_latest %}
2-
<a href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?stackName=Docker&templateURL=https://editions-us-east-1.s3.amazonaws.com/aws/stable/Docker.tmpl" data-rel="Stable-1" target="blank" class="aws-deploy">![Docker for AWS](https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png)</a>
2+
<a href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?stackName=Docker&templateURL=https://editions-us-east-1.s3.amazonaws.com/aws/stable/Docker.tmpl" data-rel="Stable-2" target="blank" class="aws-deploy">![Docker for AWS](https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png)</a>
33
{% endcapture %}
44
{% capture aws_blue_latest %}
5-
<a class="button darkblue-btn aws-deploy" href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?stackName=Docker&templateURL=https://editions-us-east-1.s3.amazonaws.com/aws/stable/Docker.tmpl" data-rel="Stable-1" target="blank">Deploy Docker for AWS (stable)</a>
5+
<a class="button darkblue-btn aws-deploy" href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?stackName=Docker&templateURL=https://editions-us-east-1.s3.amazonaws.com/aws/stable/Docker.tmpl" data-rel="Stable-2" target="blank">Deploy Docker for AWS (stable)</a>
66
{% endcapture %}
7-
{% capture aws_blue_beta %}
8-
<a class="button darkblue-btn aws-deploy" href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?stackName=Docker&templateURL=https://editions-us-east-1.s3.amazonaws.com/aws/edge/Docker.tmpl" data-rel="Beta-14" target="blank">Deploy Docker for AWS (beta)</a>
7+
{% capture aws_blue_edge %}
8+
<a class="button darkblue-btn aws-deploy" href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?stackName=Docker&templateURL=https://editions-us-east-1.s3.amazonaws.com/aws/edge/Docker.tmpl" data-rel="Beta-18" target="blank">Deploy Docker for AWS (beta)</a>
9+
{% endcapture %}
10+
{% capture aws_blue_vpc_latest %}
11+
<a class="button darkblue-btn aws-deploy" href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?stackName=Docker&templateURL=https://editions-us-east-1.s3.amazonaws.com/aws/stable/Docker-no-vpc.tmpl" data-rel="Stable-1" target="blank">Deploy Docker for AWS (stable)<br/><small>uses your existing VPC</small></a>
12+
{% endcapture %}
13+
{% capture aws_blue_vpc_edge %}
14+
<a class="button darkblue-btn aws-deploy" href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?stackName=Docker&templateURL=https://editions-us-east-1.s3.amazonaws.com/aws/edge/Docker-no-vpc.tmpl" data-rel="Beta-18" target="blank">Deploy Docker for AWS (beta)<br/><small>uses your existing VPC</small></a>
915
{% endcapture %}
1016

1117
{% capture azure_blue_latest %}
12-
<a class="button darkblue-btn azure-deploy" href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fdownload.docker.com%2Fazure%2Fstable%2FDocker.tmpl" data-rel="Stable-1" target="blank">Deploy Docker for Azure (stable)</a>
18+
<a class="button darkblue-btn azure-deploy" href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fdownload.docker.com%2Fazure%2Fstable%2FDocker.tmpl" data-rel="Stable-2" target="blank">Deploy Docker for Azure (stable)</a>
1319
{% endcapture %}
14-
{% capture azure_blue_beta %}
15-
<a class="button darkblue-btn azure-deploy" href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fdownload.docker.com%2Fazure%2Fedge%2FDocker.tmpl" data-rel="Beta-14" target="blank">Deploy Docker for Azure (beta)</a>
20+
{% capture azure_blue_edge %}
21+
<a class="button darkblue-btn azure-deploy" href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fdownload.docker.com%2Fazure%2Fedge%2FDocker.tmpl" data-rel="Beta-18" target="blank">Deploy Docker for Azure (beta)</a>
1622
{% endcapture %}
1723
{% capture azure_button_latest %}
18-
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fdownload.docker.com%2Fazure%2Fstable%2FDocker.tmpl" data-rel="Stable-1" target="_blank" class="azure-deploy">![Docker for Azure](http://azuredeploy.net/deploybutton.png)</a>
24+
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fdownload.docker.com%2Fazure%2Fstable%2FDocker.tmpl" data-rel="Stable-2" target="_blank" class="azure-deploy">![Docker for Azure](http://azuredeploy.net/deploybutton.png)</a>
1925
{% endcapture %}
2026

docker-for-aws/index.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,14 @@ using CloudFormation. For more about stable and beta channels, see the
3333
{{aws_blue_latest}}
3434
</td>
3535
<td width="50%">
36-
{{aws_blue_beta}}
36+
{{aws_blue_edge}}
37+
</td>
38+
</tr>
39+
<tr valign="top">
40+
<td width="50%">
41+
</td>
42+
<td width="50%">
43+
{{aws_blue_vpc_edge}}
3744
</td>
3845
</tr>
3946
</table>

docker-for-azure/faqs.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,23 @@ title: Docker for Azure Frequently asked questions (FAQ)
55
toc_max: 2
66
---
77

8-
## FAQ
8+
## Stable and beta channels
9+
10+
Two different download channels are available for Docker for AWS:
11+
12+
* The **stable channel** provides a general availability release-ready deployment
13+
for a fully baked and tested, more reliable cluster. The stable version of Docker
14+
for AWS comes with the latest released version of Docker Engine. The release
15+
schedule is synched with Docker Engine releases and hotfixes. On the stable
16+
channel, you can select whether to send usage statistics and other data.
17+
18+
* The **beta channel** provides a deployment with new features we are working on,
19+
but is not necessarily fully tested. It comes with the experimental version of
20+
Docker Engine. Bugs, crashes and issues are more likely to occur with the beta
21+
cluster, but you get a chance to preview new functionality, experiment, and provide
22+
feedback as the deployment evolve. Releases are typically more frequent than for
23+
stable, often one or more per month. Usage statistics and crash reports are sent
24+
by default. You do not have the option to disable this on the beta channel.
925

1026
## Can I use my own VHD?
1127
No, at this time we only support the default Docker for Azure VHD.

docker-for-azure/index.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,26 @@ redirect_from:
1111
## Quickstart
1212

1313
If your account has the [proper permissions](#prerequisites), you can generate the [Service Principal](#service-principal) and
14-
then use the below button from the stable channel to bootstrap Docker for Azure using Azure Resource Manager.
14+
then choose from the stable or beta channel to bootstrap Docker for Azure using Azure Resource Manager.
15+
For more about stable and beta channels, see the [FAQs](/docker-for-azure/faqs.md#stable-and-beta-channels)
1516

1617
<table style="width:100%">
1718
<tr>
1819
<th style="font-size: x-large; font-family: arial">Stable channel</th>
20+
<th style="font-size: x-large; font-family: arial">Beta channel</th>
1921
</tr>
2022
<tr valign="top">
21-
<td width="100%">This deployment is fully baked and tested, and comes with the latest GA version of Docker Engine. <br><br>This is the best channel to use if you want a reliable platform to work with. <br><br>These releases follow a version schedule with a longer lead time than the betas, synched with Docker Engine releases and hotfixes.
23+
<td width="50%">The stable deployment is fully baked and tested, and comes with the latest GA version of Docker Engine. <br><br>This is the best channel to use if you want a reliable platform to work with. <br><br>These releases follow a version schedule with a longer lead time than the betas, synched with Docker Engine releases and hotfixes.
2224
</td>
25+
<td width="50%">The beta deployment offers cutting edge features and comes with the experimental version of Docker Engine, described in the <a href="https://github.com/docker/docker/tree/master/experimental">Docker Experimental Features README</a> on GitHub.<br><br>This is the best channel to use if you want to experiment with features under development, and can weather some instability and bugs. This channel is a continuation of the beta program, where you can provide feedback as the apps evolve. Releases are typically more frequent than for stable, often one or more per month. <br><br>We collect usage data on betas across the board.</td>
2326
</tr>
2427
<tr valign="top">
25-
<td width="100%">
28+
<td width="50%">
2629
{{azure_blue_latest}}
2730
</td>
31+
<td width="50%">
32+
{{azure_blue_edge}}
33+
</td>
2834
</tr>
2935
</table>
3036

docker-for-azure/release-notes.md

Lines changed: 32 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,35 +6,54 @@ title: Docker for Azure Release Notes
66

77
{% include d4a_buttons.md %}
88

9-
## 1.13.0-1
10-
Release date: 1/18/2017
9+
## Stable Channel
10+
11+
### 1.13.1-2 (stable)
12+
Release date: 02/08/2017
1113

1214
{{azure_button_latest}}
1315

14-
### New
16+
**New**
17+
18+
- Docker Engine upgraded to [Docker 1.13.1](https://github.com/docker/docker/blob/master/CHANGELOG.md)
19+
20+
### 1.13.0-1
21+
Release date: 1/18/2017
22+
23+
**New**
1524

1625
- Docker Engine upgraded to [Docker 1.13.0](https://github.com/docker/docker/blob/master/CHANGELOG.md)
1726
- Writing to home directory no longer requires `sudo`
1827
- Added support to perform fine grained monitoring of health status of swarm nodes, destroy unhealthy nodes and create replacement nodes
1928
- Added support to scale the number of nodes in manager and worker vm scale sets through Azure UI/CLI for managing the number of nodes in a scale set
2029
- Improved logging and remote diagnostics mechanisms for system containers
2130

22-
## 1.13.0-beta12
31+
## Beta Channel
32+
33+
### 1.13.1-beta18
34+
Release date: 02/16/2017
35+
36+
**New**
37+
38+
- Docker Engine upgraded to [Docker 1.13.1](https://github.com/docker/docker/blob/master/CHANGELOG.md)
39+
- Added Swarm wide support for [persistent storage volumes](persistent-data-volumes.md)
40+
41+
### 1.13.0-beta12
2342

2443
Release date: 12/09/2016
2544

26-
### New
45+
**New**
2746

2847
- Docker Engine upgraded to [Docker 1.13.0-rc2](https://github.com/docker/docker/blob/master/CHANGELOG.md)
2948
- SSH access has been added to the worker nodes
3049
- The Docker daemon no longer listens on port 2375
3150
- Added a `swarm-exec` to execute a docker command across all of the swarm nodes. See [Executing Docker commands in all swarm nodes](deploy.md#execute-docker-commands-in-all-swarm-nodes) for more details.
3251

33-
## 1.12.3-beta10
52+
### 1.12.3-beta10
3453

3554
Release date: 11/08/2016
3655

37-
### New
56+
**New**
3857

3958
- Docker Engine upgraded to Docker 1.12.3
4059
- Fixed the shell container that runs on the managers, to remove a ssh host key that was accidentally added to the image.
@@ -44,33 +63,33 @@ This could have led to a potential man in the middle (MITM) attack. The ssh host
4463
- All container logs can be found in the `xxxxlog` storage account
4564
- You can connect to each manager using SSH by following our deploy [guide](deploy.md)
4665

47-
## 1.12.2-beta9
66+
### 1.12.2-beta9
4867

4968
Release date: 10/17/2016
5069

51-
### New
70+
**New**
5271

5372
- Docker Engine upgraded to Docker 1.12.2
5473
- Manager behind its own LB
5574
- Added sudo support to the shell container on manager nodes
5675

57-
## 1.12.1-beta5
76+
### 1.12.1-beta5
5877

5978
Release date: 8/19/2016
6079

61-
### New
80+
**New**
6281

6382
* Docker Engine upgraded to 1.12.1
6483

6584
### Errata
6685

6786
* To assist with debugging, the Docker Engine API is available internally in the Azure VPC on TCP port 2375. These ports cannot be accessed from outside the cluster, but could be used from within the cluster to obtain privileged access on other cluster nodes. In future releases, direct remote access to the Docker API will not be available.
6887

69-
## 1.12.0-beta4
88+
### 1.12.0-beta4
7089

7190
Release date: 8/9/2016
7291

73-
### New
92+
**New**
7493

7594
* First release
7695

0 commit comments

Comments
 (0)