forked from opensearch-project/project-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
old_downloads.html
116 lines (99 loc) · 5.08 KB
/
old_downloads.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
---
layout: default
title: Downloads
primary_title: Downloads
opendistro:
head: Need Open Distro?
img:
url: /assets/img/logo-opendistro.svg
alt: Open Distro Logo
description: Open Distro for Elasticsearch can still be downloaded.
link:
url: https://opendistro.github.io/for-elasticsearch/downloads.html
title: Get it here
verify_keys:
head: "How to verify signatures"
description: "Download our PGP key using the link below and import it. If you're using gpg, you just need to run `gpg --import /path/to/key`. You can then verify the signature by downloading it into the same directory where you downloaded the tarball, and running `gpg --verify /path/to/signature /path/to/tarball`. It should show a good signature signed by [email protected].<br /><br />
Our current PGP key fingerprint is C5B7 4989 65EF D1C2 924B A9D5 39D3 1987 9310 D3FC"
link:
url: https://artifacts.opensearch.org/publickeys/opensearch.pgp
title: Get Our PGP key
intro:
heading: How to get started with OpenSearch
paragraph: OpenSearch is open source software that uses the Apache License version 2 (ALv2). ALv2 grants you well-understood usage rights; you can use, modify, extend, embed, monetize, resell, and offer OpenSearch as part of your products and services. The source for the entire project is available on [GitHub](https://github.com/opensearch-project/) and you're welcome to build from source for customized deployments. Downloadable artifacts for OpenSearch and OpenSearch Dashboards include plugins and tools, ready for you to use with minimal configuration.
opensearch:
heading: OpenSearch
description: Linux, x64, .tgz
download_cta: Download OpenSearch
docker_cta: OpenSearch on Docker
opensearch_dashboards:
heading: OpenSearch Dashboards
description: Linux, x64, .tgz
download_cta: Download OpenSearch Dashboards
docker_cta: OpenSearch Dashboards on Docker
try:
heading: Try OpenSearch with Docker Compose
compose_url: /samples/docker-compose.yml
description: "The best way to try out OpenSearch is to use [Docker Compose](https://docs.docker.com/compose/install/). These steps will setup a two node cluster of OpenSearch plus OpenSearch Dashboards:"
step1:
action: 'Download'
destination: 'into your desired directory'
steps:
# step 1 is generated by the template
- "Run `docker-compose up`"
- "Have a nice coffee while everything is downloading and starting up"
- "Navigate to `http://localhost:5601/` for OpenSearch Dashboards"
- "Login with the default username (`admin`) and password (`admin`)"
---
{% assign primary_title = site.headings.authors %}
{% assign layout_class = 'sidebar-right' %}
{% capture content %}
<div class="downloads-page">
<h2>{{ page.intro.heading }}</h2>
{{ page.intro.paragraph | markdownify }}
<div class="layout-2col">
<div class="col">
<h2>{{page.opensearch.heading}} </h2>
<div class="meta">{{ page.opensearch.description }} (<a href="{{site.data.opensearch_artifacts.opensearch.sig}}">signature</a>) <br />Current version: {{ site.data.version.latest_version.os }}</div>
<a href="{{site.data.opensearch_artifacts.opensearch.linux_x64}}" class="cta">{{ page.opensearch.download_cta }}</a>
<hr />
<a href="{{site.data.opensearch_artifacts.opensearch.docker}}" class="cta outline" target="_blank">{{ page.opensearch.docker_cta }}</a>
</div>
<div class="col">
<h2>{{page.opensearch_dashboards.heading}}</h2>
<div class="meta">{{ page.opensearch_dashboards.description }} (<a href="{{site.data.opensearch_artifacts.opensearch_dashboards.sig}}">signature</a>)<br />Current version: {{ site.data.version.latest_version.os-d }} </div>
<a href="{{site.data.opensearch_artifacts.opensearch_dashboards.linux_x64}}" class="cta">{{page.opensearch_dashboards.download_cta}}</a>
<hr />
<a href="{{site.data.opensearch_artifacts.opensearch_dashboards.docker}}" class="cta outline" target="_blank">{{ page.opensearch_dashboards.docker_cta }}</a>
</div>
</div>
<hr />
<h2>{{page.try.heading}}</h2>
{{page.try.description | markdownify}}
<ol>
<li>{{page.try.step1.action}} <a href="{{page.try.compose_url}}" download>docker-compose.yml</a> {{page.try.step1.destination}}</li>
{% for step in page.try.steps %}
<li>{{ step | markdownify}}</li>
{% endfor %}
</ol>
</div>
{%endcapture%}
{% capture content_related %}
<div role="complementary">
{% include beta_feedback.html %}
<h3>{{ page.opendistro.head }}</h3>
<div class="feature-content">
<p>{{ page.opendistro.description }}</p>
<a href="{{ page.opendistro.link.url }}" class="link-readmore">{{ page.opendistro.link.title }}</a>
</div>
<div>
<h3>{{ page.verify_keys.head }}</h3>
<div class="feature-content">
{{ page.verify_keys.description | markdownify}}
<a href="{{ page.verify_keys.link.url }}" class="link-readmore" target="_blank">{{ page.verify_keys.link.title }}</a>
</div>
</div>
</div>
{%endcapture%}
{% include copy_banner.html %}
{% include base_3col.html %}