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 and tlake committed Apr 10, 2019
1 parent 3a97969 commit f2bb33f
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 34 deletions.
1 change: 0 additions & 1 deletion docs/assets/images/icons/bitbucket.4ebea66e.svg

This file was deleted.

1 change: 0 additions & 1 deletion docs/assets/images/icons/github.a4034fb1.svg

This file was deleted.

1 change: 0 additions & 1 deletion docs/assets/images/icons/gitlab.d80e5efc.svg

This file was deleted.

1 change: 0 additions & 1 deletion docs/assets/javascripts/application.cae2244d.js

This file was deleted.

2 changes: 0 additions & 2 deletions docs/assets/stylesheets/application-palette.792431c1.css

This file was deleted.

2 changes: 0 additions & 2 deletions docs/assets/stylesheets/application.0e9c8aca.css

This file was deleted.

8 changes: 4 additions & 4 deletions docs/reference/cli/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3414,7 +3414,7 @@ <h4 id="optional-arguments">Optional arguments<a class="headerlink" href="#optio
<div class="codehilite"><pre><span></span><span class="p">&lt;</span><span class="n">powershell</span><span class="p">&gt;</span>
<span class="c"># Set agent env variables for the Machine context (durable)</span>
<span class="nv">$clusterName</span> <span class="p">=</span> <span class="s2">&quot;{{ .ECSEnvironmentID }}&quot;</span>
<span class="nb">Write-Host</span> <span class="n">Cluster</span> <span class="n">name</span> <span class="n">set</span> <span class="n">as</span><span class="err">:</span> <span class="nv">$clusterName</span> <span class="n">-foreground</span> <span class="n">green</span>
<span class="nb">Write-Host</span> <span class="n">Cluster</span> <span class="n">name</span> <span class="nb">set </span><span class="n">as</span><span class="err">:</span> <span class="nv">$clusterName</span> <span class="n">-foreground</span> <span class="n">green</span>

<span class="no">[Environment]</span><span class="p">::</span><span class="n">SetEnvironmentVariable</span><span class="p">(</span><span class="s2">&quot;ECS_CLUSTER&quot;</span><span class="p">,</span> <span class="nv">$clusterName</span><span class="p">,</span> <span class="s2">&quot;Machine&quot;</span><span class="p">)</span>
<span class="no">[Environment]</span><span class="p">::</span><span class="n">SetEnvironmentVariable</span><span class="p">(</span><span class="s2">&quot;ECS_ENABLE_TASK_IAM_ROLE&quot;</span><span class="p">,</span> <span class="s2">&quot;false&quot;</span><span class="p">,</span> <span class="s2">&quot;Machine&quot;</span><span class="p">)</span>
Expand Down Expand Up @@ -3442,8 +3442,8 @@ <h4 id="optional-arguments">Optional arguments<a class="headerlink" href="#optio
<span class="nv">$md5</span> <span class="p">=</span> <span class="nb">New-Object</span> <span class="n">-TypeName</span> <span class="n">System</span><span class="p">.</span><span class="n">Security</span><span class="p">.</span><span class="n">Cryptography</span><span class="p">.</span><span class="n">MD5CryptoServiceProvider</span>
<span class="nv">$actualMD5</span> <span class="p">=</span> <span class="no">[System.BitConverter]</span><span class="p">::</span><span class="n">ToString</span><span class="p">(</span><span class="nv">$md5</span><span class="p">.</span><span class="n">ComputeHash</span><span class="p">(</span><span class="no">[System.IO.File]</span><span class="p">::</span><span class="n">ReadAllBytes</span><span class="p">(</span><span class="nv">$zipFile</span><span class="p">))).</span><span class="n">replace</span><span class="p">(</span><span class="s1">&#39;-&#39;</span><span class="p">,</span> <span class="s1">&#39;&#39;</span><span class="p">)</span>
<span class="k">if</span><span class="p">(</span><span class="nv">$expectedMD5</span> <span class="o">-ne</span> <span class="nv">$actualMD5</span><span class="p">)</span> <span class="p">{</span>
<span class="n">echo</span> <span class="s2">&quot;Download doesn&#39;t match hash.&quot;</span>
<span class="n">echo</span> <span class="s2">&quot;Expected: $expectedMD5 - Got: $actualMD5&quot;</span>
<span class="nb">echo </span><span class="s2">&quot;Download doesn&#39;t match hash.&quot;</span>
<span class="nb">echo </span><span class="s2">&quot;Expected: $expectedMD5 - Got: $actualMD5&quot;</span>
<span class="n">exit</span> <span class="n">1</span>
<span class="p">}</span>

Expand All @@ -3457,7 +3457,7 @@ <h4 id="optional-arguments">Optional arguments<a class="headerlink" href="#optio
<span class="nv">$jobpath</span> <span class="p">=</span> <span class="nv">$env:LOCALAPPDATA</span> <span class="p">+</span> <span class="s2">&quot;\Microsoft\Windows\PowerShell\ScheduledJobs\$jobname\ScheduledJobDefinition.xml&quot;</span>

<span class="k">if</span><span class="p">($(</span><span class="nb">Test-Path</span> <span class="n">-Path</span> <span class="nv">$jobpath</span><span class="p">))</span> <span class="p">{</span>
<span class="n">echo</span> <span class="s2">&quot;Job definition already present&quot;</span>
<span class="nb">echo </span><span class="s2">&quot;Job definition already present&quot;</span>
<span class="n">exit</span> <span class="n">0</span>
<span class="p">}</span>

Expand Down
2 changes: 1 addition & 1 deletion docs/search/search_index.json

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions docs/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,107 +2,107 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://github.com/quintilesims/layer0/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/releases/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/intro/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/setup/install/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/setup/upgrade/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/setup/destroy/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/guides/walkthrough/intro/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/guides/walkthrough/deployment-1/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/guides/walkthrough/deployment-2/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/guides/one_off_task/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/reference/cli/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/reference/setup-cli/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/reference/terraform_introduction/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/reference/terraform-plugin/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/reference/updateservice/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/reference/consul/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/reference/task_definition/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/reference/architecture/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/reference/ecr/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/troubleshooting/commonissues/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://github.com/quintilesims/layer0/troubleshooting/ssh/</loc>
<lastmod>2018-11-13</lastmod>
<lastmod>2019-04-10</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
Binary file modified docs/sitemap.xml.gz
Binary file not shown.

0 comments on commit f2bb33f

Please sign in to comment.