open-nomad/website/source/downloads.html.erb

60 lines
1.9 KiB
Plaintext
Raw Normal View History

2015-09-12 00:01:02 +00:00
---
layout: "downloads"
2015-09-17 23:33:37 +00:00
page_title: "Download Nomad"
sidebar_current: "downloads-nomad"
2015-09-12 00:01:02 +00:00
description: |-
2015-09-17 23:33:37 +00:00
Download Nomad
2015-09-12 00:01:02 +00:00
---
2015-09-17 23:33:37 +00:00
<h1>Download Nomad</h1>
2015-09-12 00:01:02 +00:00
<section class="downloads">
2015-10-26 14:40:47 +00:00
<div class="description row">
<div class="col-md-12">
<p>
Below are the available downloads for the latest version of Nomad
(<%= 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/nomad/<%= latest_version %>/nomad_<%= latest_version %>_SHA256SUMS">
SHA256 checksums for Nomad <%= latest_version %>
</a>
online and you can
<a href="https://releases.hashicorp.com/nomad/<%= latest_version %>/nomad_<%= 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>.
2015-10-29 20:16:05 +00:00
You can also <a href="https://releases.hashicorp.com/nomad/" target="_TOP">download older versions of Nomad</a> from the releases service.
2015-10-26 14:40:47 +00:00
</p>
</div>
</div>
2015-09-12 00:01:02 +00:00
2015-10-26 14:40:47 +00:00
<% 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="https://www.fastly.com?utm_source=hashicorp" target="_TOP">
<%= image_tag "fastly_logo.png" %>
</a>
</div>
</div>
2015-09-12 00:01:02 +00:00
</section>