Skip to content

Commit

Permalink
Release v0.10.8: Merge master into develop (#601)
Browse files Browse the repository at this point in the history
* Rebuild docs site post v0.10.7 release (#563)

* 549: Fix API service LB health check for v0.10.6 (#550)

When running l0-setup apply for a new instance, after the resources are created, the health check was not succeeding and timing out. This happened because l0-setup tries to hit /health while the API was coded to have the health endpoint on /admin/health.

This change was originally implemented in api-refactor branches, so we are applying the /admin/helth -> /health change to the master/develop branches

* 553: Support ELB Idle Timeout in CLI and Terraform when creating or updating load balancer (#557)

* 553: Allow Load Balancer Idle Timeout to be defined at creation time

* 553: Fix breaking unit tests on idle timeout type casting

* 553: Add update idle timeout cli functionality

* 553: More work on fixing unit tests

* 553: Fix command unit test, add printer unit test

* 553: Fix remaining unit tests, add documentation

* 553: Remove ELB references in docs and some review changes

* 553: Make idletimeout subcommand print if no update is required

* 553: Add additional documentation explaining what the Idle Timeout it

* 553: Remove unnecessary import statement in elb provider decorator

* 553: Make review fixes, dereferencing IdleTimeout, add more explicit error handle in lb attrib describe

* 553: Modify load balancer command to ParseInt timeout rather than Atoi conversion

* 533: Change spacing in cli reference docs page

* Sync develop and master - v0.10.7 release (#561)

* Merge for CI testing. (#527)

* v0.10.4 docfixes tlake (#492)

* Fixes in guides/ and reference/

* Update admonition

* Remove deprecated 'apply-smoketest' target

* Remove smoketests from CI pipeline

* Code review updates

* Clean up deprecated smoketest targets

* Update docs

* Update release notes and add script to update version (#495)

* Update release notes and add script to update version

* Add make script for updating release

* Update release notes

* Update travis with github release

* Update travis

* Test travis

* Update travis

* Fix travis

* Update travis to build binaries for github

* Update travis build and rework release flow

* Move to expenv and removed release notes, reduntant

* Update release notes with new flow

* PR Feedback changes, fix makefile

* Fix .zip missing in index

* Remove l0_version

* Remove dependency for prefix v

* PR Feedback changes'

* Fix regex

* Update to v0.10.5 for docs and back expenv

* Fix travis script

* Update travis script

* Update travis script

* Update travis script

* Fix travis script order

* Fix docker env in travis

* Fix docker login

* Add expenv to before_deploy

* Updated docs for v0.10.6

* Release v0.10.7 (#560)

* 549: Fix API service LB health check for v0.10.6 (#550)

When running l0-setup apply for a new instance, after the resources are created, the health check was not succeeding and timing out. This happened because l0-setup tries to hit /health while the API was coded to have the health endpoint on /admin/health.

This change was originally implemented in api-refactor branches, so we are applying the /admin/helth -> /health change to the master/develop branches

* 553: Support ELB Idle Timeout in CLI and Terraform when creating or updating load balancer (#557)

Adds CLI functionality for l0 loadbalancer create and a new subcommand l0 loadbalancer idletimeout. Create has a new optional flag --idle-timeout for create which can be used to specify the Idle Timeout of the load balancer at creation time. l0 loadbalancer idletimeout is an update subcommand that updates a given load balancer's idle timeout to a new value.

Adds Terraform support for defining a load balancer's Idle Timeout. A new key is introduced into the resource, idle_timeout.

* MAINT: Build docs for v0.10.7 release

* MAINT: Doc fixes post v0.10.7 release

* MAINT: Docs site rebuilt post v0.10.7 release

* Document breaking change within v0.10.x family (#574)

* 549: Fix API service LB health check for v0.10.6 (#550)

When running l0-setup apply for a new instance, after the resources are created, the health check was not succeeding and timing out. This happened because l0-setup tries to hit /health while the API was coded to have the health endpoint on /admin/health.

This change was originally implemented in api-refactor branches, so we are applying the /admin/helth -> /health change to the master/develop branches

* 553: Support ELB Idle Timeout in CLI and Terraform when creating or updating load balancer (#557)

* 553: Allow Load Balancer Idle Timeout to be defined at creation time

* 553: Fix breaking unit tests on idle timeout type casting

* 553: Add update idle timeout cli functionality

* 553: More work on fixing unit tests

* 553: Fix command unit test, add printer unit test

* 553: Fix remaining unit tests, add documentation

* 553: Remove ELB references in docs and some review changes

* 553: Make idletimeout subcommand print if no update is required

* 553: Add additional documentation explaining what the Idle Timeout it

* 553: Remove unnecessary import statement in elb provider decorator

* 553: Make review fixes, dereferencing IdleTimeout, add more explicit error handle in lb attrib describe

* 553: Modify load balancer command to ParseInt timeout rather than Atoi conversion

* 533: Change spacing in cli reference docs page

* Sync develop and master - v0.10.7 release (#561)

* Merge for CI testing. (#527)

* v0.10.4 docfixes tlake (#492)

* Fixes in guides/ and reference/

* Update admonition

* Remove deprecated 'apply-smoketest' target

* Remove smoketests from CI pipeline

* Code review updates

* Clean up deprecated smoketest targets

* Update docs

* Update release notes and add script to update version (#495)

* Update release notes and add script to update version

* Add make script for updating release

* Update release notes

* Update travis with github release

* Update travis

* Test travis

* Update travis

* Fix travis

* Update travis to build binaries for github

* Update travis build and rework release flow

* Move to expenv and removed release notes, reduntant

* Update release notes with new flow

* PR Feedback changes, fix makefile

* Fix .zip missing in index

* Remove l0_version

* Remove dependency for prefix v

* PR Feedback changes'

* Fix regex

* Update to v0.10.5 for docs and back expenv

* Fix travis script

* Update travis script

* Update travis script

* Update travis script

* Fix travis script order

* Fix docker env in travis

* Fix docker login

* Add expenv to before_deploy

* Updated docs for v0.10.6

* Release v0.10.7 (#560)

* 549: Fix API service LB health check for v0.10.6 (#550)

When running l0-setup apply for a new instance, after the resources are created, the health check was not succeeding and timing out. This happened because l0-setup tries to hit /health while the API was coded to have the health endpoint on /admin/health.

This change was originally implemented in api-refactor branches, so we are applying the /admin/helth -> /health change to the master/develop branches

* 553: Support ELB Idle Timeout in CLI and Terraform when creating or updating load balancer (#557)

Adds CLI functionality for l0 loadbalancer create and a new subcommand l0 loadbalancer idletimeout. Create has a new optional flag --idle-timeout for create which can be used to specify the Idle Timeout of the load balancer at creation time. l0 loadbalancer idletimeout is an update subcommand that updates a given load balancer's idle timeout to a new value.

Adds Terraform support for defining a load balancer's Idle Timeout. A new key is introduced into the resource, idle_timeout.

* MAINT: Build docs for v0.10.7 release

* MAINT: Doc fixes post v0.10.7 release

* MAINT: Docs site rebuilt post v0.10.7 release

* Document breaking change within v0.10.x family

* Add merge type for release branch into master

* 596: Update AWS SDK vendoring (#597)

* 596: Update AWS SDK vendoring

The vendored version of the AWS SDK is being updated to account for
recent changes that have been made in the SDK. As it pertains to the
issue that is being addressed, ECS ContainerDefinitions have added new
properties that we should support when l0 deploys are created.

* MAINT: Update broken README links

* MAINT: Update v0.10.8 docs
  • Loading branch information
jparsons04 authored Apr 12, 2018
1 parent e204931 commit b17fb2b
Show file tree
Hide file tree
Showing 276 changed files with 165,220 additions and 67,730 deletions.
5 changes: 3 additions & 2 deletions docs-src/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ Layer0 is a framework that helps you deploy web applications to the cloud with m
Ready to learn more about Layer0? See our [introduction page](intro.md) to learn about some important concepts. When you're ready to get started, take a look at the [installation page](setup/install.md) for information about setting up Layer0.

## Download
| Download **v0.10.7** | | |
| Download **v0.10.8** | | |
|:-:|:-:|:-:|
| ![Darwin](/static/icon_darwin.png) | ![Linux](/static/icon_linux.png) | ![Windows](/static/icon_windows.png) |
| [macOS](https://github.com/quintilesims/layer0/releases/download/v0.10.7/macOS.zip) | [Linux](https://github.com/quintilesims/layer0/releases/download/v0.10.7/Linux.zip) | [Windows](https://github.com/quintilesims/layer0/releases/download/v0.10.7/Windows.zip) |
| [macOS](https://github.com/quintilesims/layer0/releases/download/v0.10.8/macOS.zip) | [Linux](https://github.com/quintilesims/layer0/releases/download/v0.10.8/Linux.zip) | [Windows](https://github.com/quintilesims/layer0/releases/download/v0.10.8/Windows.zip) |


## Contact Us

Expand Down
1 change: 1 addition & 0 deletions docs-src/docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

| Version | macOS | Linux | Windows |
| - | - | - | - |
| v0.10.8 | [macOS](https://github.com/quintilesims/layer0/releases/download/v0.10.8/macOS.zip) | [Linux](https://github.com/quintilesims/layer0/releases/download/v0.10.8/Linux.zip) | [Windows](https://github.com/quintilesims/layer0/releases/download/v0.10.8/Windows.zip)
| v0.10.7 | [macOS](https://github.com/quintilesims/layer0/releases/download/v0.10.7/macOS.zip) | [Linux](https://github.com/quintilesims/layer0/releases/download/v0.10.7/Linux.zip) | [Windows](https://github.com/quintilesims/layer0/releases/download/v0.10.7/Windows.zip)
| v0.10.6 | [macOS](https://github.com/quintilesims/layer0/releases/download/v0.10.6/macOS.zip) | [Linux](https://github.com/quintilesims/layer0/releases/download/v0.10.6/Linux.zip) | [Windows](https://github.com/quintilesims/layer0/releases/download/v0.10.6/Windows.zip)
| v0.10.5 | [macOS](https://github.com/quintilesims/layer0/releases/download/v0.10.5/macOS.zip) | [Linux](https://github.com/quintilesims/layer0/releases/download/v0.10.5/Linux.zip) | [Windows](https://github.com/quintilesims/layer0/releases/download/v0.10.5/Windows.zip)
Expand Down
8 changes: 4 additions & 4 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ <h2 id="download">Download<a class="headerlink" href="#download" title="Permanen
<table>
<thead>
<tr>
<th align="center">Download <strong>v0.10.7</strong></th>
<th align="center">Download <strong>v0.10.8</strong></th>
<th align="center"></th>
<th align="center"></th>
</tr>
Expand All @@ -693,9 +693,9 @@ <h2 id="download">Download<a class="headerlink" href="#download" title="Permanen
<td align="center"><img alt="Windows" src="./static/icon_windows.png" /></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.7/macOS.zip">macOS</a></td>
<td align="center"><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.7/Linux.zip">Linux</a></td>
<td align="center"><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.7/Windows.zip">Windows</a></td>
<td align="center"><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.8/macOS.zip">macOS</a></td>
<td align="center"><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.8/Linux.zip">Linux</a></td>
<td align="center"><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.8/Windows.zip">Windows</a></td>
</tr>
</tbody>
</table>
Expand Down
12 changes: 6 additions & 6 deletions docs/releases/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,12 @@ <h1>Releases</h1>
</thead>
<tbody>
<tr>
<td>v0.10.8</td>
<td><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.8/macOS.zip">macOS</a></td>
<td><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.8/Linux.zip">Linux</a></td>
<td><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.8/Windows.zip">Windows</a></td>
</tr>
<tr>
<td>v0.10.7</td>
<td><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.7/macOS.zip">macOS</a></td>
<td><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.7/Linux.zip">Linux</a></td>
Expand Down Expand Up @@ -659,12 +665,6 @@ <h1>Releases</h1>
<td><a href="https://github.com/quintilesims/layer0/releases/download/v0.8.4/Linux.zip">Linux</a></td>
<td><a href="https://github.com/quintilesims/layer0/releases/download/v0.8.4/Windows.zip">Windows</a></td>
</tr>
<tr>
<td>v0.10.7</td>
<td><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.7/macOS.zip">macOS</a></td>
<td><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.7/Linux.zip">Linux</a></td>
<td><a href="https://github.com/quintilesims/layer0/releases/download/v0.10.7/Windows.zip">Windows</a></td>
</tr>
</tbody>
</table>

Expand Down
12 changes: 6 additions & 6 deletions docs/search/search_index.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"docs": [
{
"location": "/",
"text": "Build, Manage, and Deploy Your Application\n#\n\n\n\n\nMeet Layer0\n#\n\n\nLayer0 is a framework that helps you deploy web applications to the cloud with minimal fuss. Using a simple command line interface (CLI), you can manage the entire life cycle of your application without having to focus on infrastructure.\n\n\nReady to learn more about Layer0? See our \nintroduction page\n to learn about some important concepts. When you're ready to get started, take a look at the \ninstallation page\n for information about setting up Layer0.\n\n\nDownload\n#\n\n\n\n\n\n\n\n\nDownload \nv0.10.7\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\n\n\nContact Us\n#\n\n\nIf you have questions about Layer0, email the development team at \n[email protected]\n.",
"location": "/",
"text": "Build, Manage, and Deploy Your Application\n#\n\n\n\n\nMeet Layer0\n#\n\n\nLayer0 is a framework that helps you deploy web applications to the cloud with minimal fuss. Using a simple command line interface (CLI), you can manage the entire life cycle of your application without having to focus on infrastructure.\n\n\nReady to learn more about Layer0? See our \nintroduction page\n to learn about some important concepts. When you're ready to get started, take a look at the \ninstallation page\n for information about setting up Layer0.\n\n\nDownload\n#\n\n\n\n\n\n\n\n\nDownload \nv0.10.8\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\n\n\nContact Us\n#\n\n\nIf you have questions about Layer0, email the development team at \n[email protected]\n.",
"title": "Home"
},
{
Expand All @@ -16,8 +16,8 @@
"title": "Meet Layer0"
},
{
"location": "/#download",
"text": "Download v0.10.7 macOS Linux Windows",
"location": "/#download",
"text": "Download v0.10.8 macOS Linux Windows",
"title": "Download"
},
{
Expand All @@ -26,8 +26,8 @@
"title": "Contact Us"
},
{
"location": "/releases/",
"text": "v0.10.x Breaking Change\n\n\nThe v0.10.x family contains a breaking change for the task workflow.\nFor best results, please consider versions 0.10.4 and newer to be incompatible with versions 0.10.3 and older.\nSee \nthis issue\n for more.\n\n\n\n\n\n\n\n\n\n\nVersion\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\n\n\n\n\nv0.10.7\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.6\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.5\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.4\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.3\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.2\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.1\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.0\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.9.0\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.8.4\n\n\nmacOS\n\n\nLinux\n\n\nWindows",
"location": "/releases/",
"text": "v0.10.x Breaking Change\n\n\nThe v0.10.x family contains a breaking change for the task workflow.\nFor best results, please consider versions 0.10.4 and newer to be incompatible with versions 0.10.3 and older.\nSee \nthis issue\n for more.\n\n\n\n\n\n\n\n\n\n\nVersion\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\n\n\n\n\nv0.10.8\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.7\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.6\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.5\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.4\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.3\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.2\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.1\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.10.0\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.9.0\n\n\nmacOS\n\n\nLinux\n\n\nWindows\n\n\n\n\n\n\nv0.8.4\n\n\nmacOS\n\n\nLinux\n\n\nWindows",
"title": "Releases"
},
{
Expand Down
42 changes: 21 additions & 21 deletions docs/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@

<url>
<loc>https://github.com/quintilesims/layer0//</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>



<url>
<loc>https://github.com/quintilesims/layer0//releases/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>



<url>
<loc>https://github.com/quintilesims/layer0//intro/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

Expand All @@ -29,19 +29,19 @@

<url>
<loc>https://github.com/quintilesims/layer0//setup/install/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//setup/upgrade/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//setup/destroy/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

Expand All @@ -51,25 +51,25 @@

<url>
<loc>https://github.com/quintilesims/layer0//guides/walkthrough/intro/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//guides/walkthrough/deployment-1/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//guides/walkthrough/deployment-2/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//guides/one_off_task/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

Expand All @@ -79,55 +79,55 @@

<url>
<loc>https://github.com/quintilesims/layer0//reference/cli/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//reference/setup-cli/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//reference/terraform_introduction/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//reference/terraform-plugin/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//reference/updateservice/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//reference/consul/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//reference/task_definition/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//reference/architecture/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//reference/ecr/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

Expand All @@ -137,13 +137,13 @@

<url>
<loc>https://github.com/quintilesims/layer0//troubleshooting/commonissues/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

<url>
<loc>https://github.com/quintilesims/layer0//troubleshooting/ssh/</loc>
<lastmod>2018-03-12</lastmod>
<lastmod>2018-04-10</lastmod>
<changefreq>daily</changefreq>
</url>

Expand Down
65 changes: 6 additions & 59 deletions vendor/github.com/aws/aws-sdk-go/aws/client/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b17fb2b

Please sign in to comment.