|
|
|
@ -9,47 +9,59 @@ description: |-
|
|
|
|
|
<h1>Download Consul</h1> |
|
|
|
|
|
|
|
|
|
<section class="downloads"> |
|
|
|
|
<div class="description row"> |
|
|
|
|
<div class="col-md-12"> |
|
|
|
|
<p> |
|
|
|
|
Below are all available downloads for the latest version of Consul |
|
|
|
|
(<%= latest_version %>). Please download the proper package for your |
|
|
|
|
operating system and architecture. You can find SHA256 checksums |
|
|
|
|
for packages <a href="https://dl.bintray.com/mitchellh/consul/<%= latest_version %>_SHA256SUMS?direct">here</a>. |
|
|
|
|
</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="description row"> |
|
|
|
|
<div class="col-md-12"> |
|
|
|
|
<p> |
|
|
|
|
Below are the available downloads for the latest version of Consul |
|
|
|
|
(<%= latest_version %>). Please download the proper package for your |
|
|
|
|
operating system and architecture. |
|
|
|
|
</p> |
|
|
|
|
<p> |
|
|
|
|
You can find the |
|
|
|
|
<a href="https://releases.hashicorp.com/consul/<%= latest_version %>/consul_<%= latest_version %>_SHA256SUMS"> |
|
|
|
|
SHA256 checksums for Consul <%= latest_version %> |
|
|
|
|
</a> |
|
|
|
|
online and you can |
|
|
|
|
<a href="https://releases.hashicorp.com/consul/<%= latest_version %>/consul_<%= latest_version %>_SHA256SUMS.sig"> |
|
|
|
|
verify the checksums signature file |
|
|
|
|
</a> |
|
|
|
|
which has been signed using <a href="https://hashicorp.com/security.html" target="_TOP">HashiCorp's GPG key</a>. |
|
|
|
|
You can also <a href="https://releases.hashicorp.com/consul" target="_TOP">download older versions of Consul</a> from the releases service. |
|
|
|
|
</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-md-12 download center"> |
|
|
|
|
<a href="https://dl.bintray.com/mitchellh/consul/<%= latest_version %>_web_ui.zip" class="btn btn-lg btn-default"> |
|
|
|
|
<a href="https://releases.hashicorp.com/consul/<%= latest_version %>/consul_<%= latest_version %>_web_ui.zip" class="btn btn-lg btn-default"> |
|
|
|
|
Download Consul Web UI |
|
|
|
|
</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<% product_versions.each do |os, versions| %> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-md-12 download"> |
|
|
|
|
<div class="icon pull-left"><%= system_icon(os) %></div> |
|
|
|
|
<div class="details"> |
|
|
|
|
<h2 class="os-name"><%= os %></h2> |
|
|
|
|
<ul> |
|
|
|
|
<% versions.each do |url| %> |
|
|
|
|
<li><a href="<%= url %>"><%= arch_for_filename(url) %></a></li> |
|
|
|
|
<% end %> |
|
|
|
|
</ul> |
|
|
|
|
<div class="clearfix"></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<% product_versions.each do |os, arches| %> |
|
|
|
|
<% next if os == "web" %> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-md-12 download"> |
|
|
|
|
<div class="icon pull-left"><%= system_icon(os) %></div> |
|
|
|
|
<div class="details"> |
|
|
|
|
<h2 class="os-name"><%= pretty_os(os) %></h2> |
|
|
|
|
<ul> |
|
|
|
|
<% arches.each do |arch, url| %> |
|
|
|
|
<li><a href="<%= url %>"><%= pretty_arch(arch) %></a></li> |
|
|
|
|
<% end %> |
|
|
|
|
</ul> |
|
|
|
|
<div class="clearfix"></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<% end %> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-md-12 poweredby"> |
|
|
|
|
<a href='http://www.bintray.com'> |
|
|
|
|
<img src="https://www.bintray.com/docs/images/poweredByBintray_ColorTransparent.png"> |
|
|
|
|
</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-md-12 poweredby"> |
|
|
|
|
<a href="https://www.fastly.com?utm_source=hashicorp" target="_TOP"> |
|
|
|
|
<%= image_tag "fastly_logo.png" %> |
|
|
|
|
</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</section> |
|
|
|
|