From d4342aab59f119706f44ef88d0a8a5638331daa4 Mon Sep 17 00:00:00 2001 From: aetter Date: Thu, 30 Sep 2021 13:43:24 -0700 Subject: [PATCH] Initial 1.1.0 updates --- README.md | 8 ++++---- _config.yml | 6 +++--- _opensearch/install/plugins.md | 18 ++++++++++++++++++ _opensearch/install/tar.md | 5 +++-- 4 files changed, 28 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 093941af..a9bd14e2 100644 --- a/README.md +++ b/README.md @@ -196,17 +196,17 @@ If you're making major changes to the documentation and need to see the rendered ## New releases 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. 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. -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 /bin/bash` to get shell access. Finally, run `./bin/opensearch-dashboards-plugin list` to get the plugins and version strings. diff --git a/_config.yml b/_config.yml index ae992e6d..e22718a4 100644 --- a/_config.yml +++ b/_config.yml @@ -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 permalink: /:path/ -opensearch_version: 1.0.1 -opensearch_major_minor_version: 1.0 -lucene_version: 8_8_2 +opensearch_version: 1.1.0 +opensearch_major_minor_version: 1.1 +lucene_version: 8_9_0 # Build settings markdown: kramdown diff --git a/_opensearch/install/plugins.md b/_opensearch/install/plugins.md index 40fdefc7..bd0d2d01 100644 --- a/_opensearch/install/plugins.md +++ b/_opensearch/install/plugins.md @@ -29,6 +29,24 @@ If you don't want to use the all-in-one OpenSearch installation options, you can + + 1.1.0 + +
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
+
+ + 1.0.1 diff --git a/_opensearch/install/tar.md b/_opensearch/install/tar.md index af45a3af..70151f5f 100644 --- a/_opensearch/install/tar.md +++ b/_opensearch/install/tar.md @@ -18,9 +18,10 @@ The tarball supports most Linux distributions, including CentOS 7, Amazon Linux ```bash # x64 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 - cd opensearch-{{site.opensearch_version}}{% endcomment %} + cd opensearch-{{site.opensearch_version}} ``` 1. Run OpenSearch: