You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pass in initial admin password and remove admin:admin references (opensearch-project#631)
* Update to pass in initial admin password
Signed-off-by: Derek Ho <dxho@amazon.com>
* Add changelog and logic to distinguish between versions
Signed-off-by: Derek Ho <dxho@amazon.com>
* fix syntax
Signed-off-by: Derek Ho <dxho@amazon.com>
* Revert tests
Signed-off-by: Derek Ho <dxho@amazon.com>
* Add 2.12 to the matrix and fix testing logic
Signed-off-by: Derek Ho <dxho@amazon.com>
* Fix version logic
Signed-off-by: Derek Ho <dxho@amazon.com>
* Try to split job into two batches
Signed-off-by: Derek Ho <dxho@amazon.com>
* Fix lint
Signed-off-by: Derek Ho <dxho@amazon.com>
* Change name
Signed-off-by: Derek Ho <dxho@amazon.com>
* Remove period
Signed-off-by: Derek Ho <dxho@amazon.com>
* Pull password dynamically
Signed-off-by: Derek Ho <dxho@amazon.com>
* Change to proper env var
Signed-off-by: Derek Ho <dxho@amazon.com>
* Try passing through
Signed-off-by: Derek Ho <dxho@amazon.com>
---------
Signed-off-by: Derek Ho <dxho@amazon.com>
Signed-off-by: Derek Ho <derek01778@gmail.com>
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
62
62
- Enhance generator to update changelog only if generated code differs from existing ([#684](https://github.com/opensearch-project/opensearch-py/pull/684))
63
63
- Added guide for configuring ssl_assert_hostname ([#694](https://github.com/opensearch-project/opensearch-py/pull/694))
64
64
### Changed
65
+
- Pass in initial admin password in setup and remove default `admin` password ([#631](https://github.com/opensearch-project/opensearch-py/pull/631))
65
66
- Updated the `get_policy` API in the index_management plugin to allow the policy_id argument as optional ([#633](https://github.com/opensearch-project/opensearch-py/pull/633))
66
67
- Updated the `point_in_time.md` guide with examples demonstrating the usage of the new APIs as alternatives to the deprecated ones. ([#661](https://github.com/opensearch-project/opensearch-py/pull/661))
Copy file name to clipboardexpand all lines: guides/index_lifecycle.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ This guide covers OpenSearch Python Client API actions for Index Lifecycle. You'
13
13
14
14
## Setup
15
15
16
-
In this guide, we will need an OpenSearch cluster with more than one node. Let's use the sample [docker-compose.yml](https://opensearch.org/samples/docker-compose.yml) to start a cluster with two nodes. The cluster's API will be available at `localhost:9200` with basic authentication enabled with default username and password of `admin:admin`.
16
+
In this guide, we will need an OpenSearch cluster with more than one node. Let's use the sample [docker-compose.yml](https://opensearch.org/samples/docker-compose.yml) to start a cluster with two nodes. The cluster's API will be available at `localhost:9200` with basic authentication enabled with default username and password of `admin:<admin password>`.
17
17
18
18
To start the cluster, run the following command:
19
19
@@ -28,7 +28,7 @@ Let's create a client instance to access this cluster:
0 commit comments