From 6560610062eb3fcf92b72082ae12a731953feaa2 Mon Sep 17 00:00:00 2001 From: "Jens W. Klein" Date: Tue, 5 Dec 2023 17:11:22 +0100 Subject: [PATCH] local test elasticsearch and minor adjustments, bump version --- README.rst | 6 +++--- examples/docker-es/docker-compose.yml | 2 -- pyproject.toml | 8 +++++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 9d1c450..009929f 100644 --- a/README.rst +++ b/README.rst @@ -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). diff --git a/examples/docker-es/docker-compose.yml b/examples/docker-es/docker-compose.yml index 7c64094..08a24fe 100644 --- a/examples/docker-es/docker-compose.yml +++ b/examples/docker-es/docker-compose.yml @@ -38,7 +38,6 @@ services: elasticsearch: image: elasticsearch:8.11.1 - container_name: elasticsearch environment: - discovery.type=single-node - http.port=9200 @@ -65,7 +64,6 @@ services: dejavu: image: appbaseio/dejavu:latest - container_name: dejavu ports: - "1358:1358" networks: diff --git a/pyproject.toml b/pyproject.toml index 3ac93da..c171f83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "jk@kleinundpartner.at"}, +] +authors = [ + {name = "Jens Klein"}, {name = "Katja Süss"}, {name = "Peter Holzer"}, ]