Initial 1.1.0 updates
This commit is contained in:
parent
973d967514
commit
d4342aab59
|
@ -196,17 +196,17 @@ If you're making major changes to the documentation and need to see the rendered
|
||||||
## New releases
|
## New releases
|
||||||
|
|
||||||
1. Branch.
|
1. Branch.
|
||||||
1. Change the `opensearch_version` and `opensearch_major_minor_version` variables in `_config.yml`.
|
1. Change the `opensearch_version`, `opensearch_major_minor_version`, and `lucene_version` variables in `_config.yml`.
|
||||||
1. Start up a new cluster using the updated Docker Compose file in `docs/install/docker.md`.
|
1. Start up a new cluster using the updated Docker Compose file in `docs/install/docker.md`.
|
||||||
1. Update the version table in `version-history.md`.
|
1. Update the version table in `version-history.md`.
|
||||||
|
|
||||||
Use `curl -XGET https://localhost:9200 -u admin:admin -k` to verify the OpenSearch version.
|
Use `curl -XGET https://localhost:9200 -u admin:admin -k` to verify the OpenSearch and Lucene versions.
|
||||||
|
|
||||||
1. Update the plugin compatibility table in `docs/install/plugin.md`.
|
1. Update the plugin compatibility table in `_opensearch/install/plugin.md`.
|
||||||
|
|
||||||
Use `curl -XGET https://localhost:9200/_cat/plugins -u admin:admin -k` to get the correct version strings.
|
Use `curl -XGET https://localhost:9200/_cat/plugins -u admin:admin -k` to get the correct version strings.
|
||||||
|
|
||||||
1. Update the plugin compatibility table in `docs/opensearch-dashboards/plugins.md`.
|
1. Update the plugin compatibility table in `_dashboards/install/plugins.md`.
|
||||||
|
|
||||||
Use `docker ps` to find the ID for the OpenSearch Dashboards node. Then use `docker exec -it <opensearch-dashboards-node-id> /bin/bash` to get shell access. Finally, run `./bin/opensearch-dashboards-plugin list` to get the plugins and version strings.
|
Use `docker ps` to find the ID for the OpenSearch Dashboards node. Then use `docker exec -it <opensearch-dashboards-node-id> /bin/bash` to get shell access. Finally, run `./bin/opensearch-dashboards-plugin list` to get the plugins and version strings.
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,9 @@ baseurl: "/docs" # the subpath of your site, e.g. /blog
|
||||||
url: "https://opensearch.org" # the base hostname & protocol for your site, e.g. http://example.com
|
url: "https://opensearch.org" # the base hostname & protocol for your site, e.g. http://example.com
|
||||||
permalink: /:path/
|
permalink: /:path/
|
||||||
|
|
||||||
opensearch_version: 1.0.1
|
opensearch_version: 1.1.0
|
||||||
opensearch_major_minor_version: 1.0
|
opensearch_major_minor_version: 1.1
|
||||||
lucene_version: 8_8_2
|
lucene_version: 8_9_0
|
||||||
|
|
||||||
# Build settings
|
# Build settings
|
||||||
markdown: kramdown
|
markdown: kramdown
|
||||||
|
|
|
@ -29,6 +29,24 @@ If you don't want to use the all-in-one OpenSearch installation options, you can
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.1.0</td>
|
||||||
|
<td>
|
||||||
|
<pre>opensearch-alerting 1.1.0.0
|
||||||
|
opensearch-anomaly-detection 1.1.0.0
|
||||||
|
opensearch-asynchronous-search 1.1.0.0
|
||||||
|
opensearch-cross-cluster-replication 1.1.0.0
|
||||||
|
opensearch-index-management 1.1.0.0
|
||||||
|
opensearch-job-scheduler 1.1.0.0
|
||||||
|
opensearch-knn 1.1.0.0
|
||||||
|
opensearch-notebooks 1.1.0.0
|
||||||
|
opensearch-performance-analyzer 1.1.0.0
|
||||||
|
opensearch-reports-scheduler 1.1.0.0
|
||||||
|
opensearch-security 1.1.0.0
|
||||||
|
opensearch-sql 1.1.0.0
|
||||||
|
</pre>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>1.0.1</td>
|
<td>1.0.1</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
@ -18,9 +18,10 @@ The tarball supports most Linux distributions, including CentOS 7, Amazon Linux
|
||||||
```bash
|
```bash
|
||||||
# x64
|
# x64
|
||||||
tar -zxf opensearch-{{site.opensearch_version}}-linux-x64.tar.gz
|
tar -zxf opensearch-{{site.opensearch_version}}-linux-x64.tar.gz
|
||||||
cd opensearch-{{site.opensearch_version}}{% comment %}# ARM64
|
cd opensearch-{{site.opensearch_version}}
|
||||||
|
# ARM64
|
||||||
tar -zxf opensearch-{{site.opensearch_version}}-linux-arm64.tar.gz
|
tar -zxf opensearch-{{site.opensearch_version}}-linux-arm64.tar.gz
|
||||||
cd opensearch-{{site.opensearch_version}}{% endcomment %}
|
cd opensearch-{{site.opensearch_version}}
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Run OpenSearch:
|
1. Run OpenSearch:
|
||||||
|
|
Loading…
Reference in New Issue