diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fb5a86ea..7839d9825 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), * Properly designate model state for actively training models when nodes crash or leave cluster [#1317](https://github.com/opensearch-project/k-NN/pull/1317) ### Infrastructure * Upgrade gradle to 8.4 [1289](https://github.com/opensearch-project/k-NN/pull/1289) -* Refactor security testing to install from individual components [#1317](https://github.com/opensearch-project/k-NN/pull/1307) +* Refactor security testing to install from individual components [#1307](https://github.com/opensearch-project/k-NN/pull/1307) ### Documentation ### Maintenance * Update developer guide to include M1 Setup [#1222](https://github.com/opensearch-project/k-NN/pull/1222) diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index 196fe91bb..2e7f7322c 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -278,19 +278,21 @@ Then, to access the cluster, we can run curl https://localhost:9200 --insecure -u admin:admin { - "name" : "runTask-0", - "cluster_name" : "runTask", - "cluster_uuid" : "oX_S6cxGSgOr_mNnUxO6yQ", + "name" : "integTest-0", + "cluster_name" : "integTest", + "cluster_uuid" : "kLsNk4JDTMyp1yQRqog-3g", "version" : { - "number" : "1.0.0-SNAPSHOT", + "distribution" : "opensearch", + "number" : "3.0.0-SNAPSHOT", "build_type" : "tar", - "build_hash" : "0ba0e7cc26060f964fcbf6ee45bae53b3a9941d0", - "build_date" : "2021-04-16T19:45:44.248303Z", + "build_hash" : "9d85e566894ef53e5f2093618b3d455e4d0a04ce", + "build_date" : "2023-10-30T18:34:06.996519Z", "build_snapshot" : true, - "lucene_version" : "8.7.0", - "minimum_wire_compatibility_version" : "6.8.0", - "minimum_index_compatibility_version" : "6.0.0-beta1" - } + "lucene_version" : "9.8.0", + "minimum_wire_compatibility_version" : "2.12.0", + "minimum_index_compatibility_version" : "2.0.0" + }, + "tagline" : "The OpenSearch Project: https://opensearch.org/" } ``` diff --git a/build.gradle b/build.gradle index 679262b1f..a0dae2559 100644 --- a/build.gradle +++ b/build.gradle @@ -110,6 +110,8 @@ ext { cluster.extraConfigFile(file, local) } + // This configuration is copied from the security plugins demo install: + // https://github.com/opensearch-project/security/blob/2.11.1.0/tools/install_demo_configuration.sh#L365-L388 cluster.setting("plugins.security.ssl.transport.pemcert_filepath", "esnode.pem") cluster.setting("plugins.security.ssl.transport.pemkey_filepath", "esnode-key.pem") cluster.setting("plugins.security.ssl.transport.pemtrustedcas_filepath", "root-ca.pem")