Skip to content

Commit

Permalink
local test elasticsearch and minor adjustments, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Dec 5, 2023
1 parent e1ca190 commit 6560610
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -396,11 +396,11 @@ Precondition:
Run the cluster with::

source .env
docker-compose up
docker compose up

First you need to set the passwords for the ElasticSearch, execute the following command and note the passwords printed on the console::
First you need to set the passwords for the ElasticSearch, execute the following command and note the passwords printed in a new terminal::

docker exec -it elasticsearch /usr/share/elasticsearch/bin/elasticsearch-setup-passwords auto
docker exec -it docker-es-elasticsearch-1 /usr/share/elasticsearch/bin/elasticsearch-setup-passwords auto

Find the password for the user ``elastic`` and set it in the environment variable ``INDEX_PASSWORD`` in the ``.env`` file.
Stop the cluster (Ctrl-C), ``source .env`` with the new settings and start it again (as above).
Expand Down
2 changes: 0 additions & 2 deletions examples/docker-es/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ services:

elasticsearch:
image: elasticsearch:8.11.1
container_name: elasticsearch
environment:
- discovery.type=single-node
- http.port=9200
Expand All @@ -65,7 +64,6 @@ services:

dejavu:
image: appbaseio/dejavu:latest
container_name: dejavu
ports:
- "1358:1358"
networks:
Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
[project]
name = "collective.elastic.ingest"
version = "2.0.0rc9"
version = "2.0.0"
description = "Ingestion service queue runner between Plone RestAPI and ElasticSearch or OpenSearch."
keywords = ["elasticsearch", "opensearch", "plone", "celery", "search", "indexer"]
readme = "README.rst"

authors = [
maintainers = [
{name = "Jens Klein", email = "[email protected]"},
]
authors = [
{name = "Jens Klein"},
{name = "Katja Süss"},
{name = "Peter Holzer"},
]
Expand Down

0 comments on commit 6560610

Please sign in to comment.