Skip to content

Commit

Permalink
Revert "Fix issue for ES jobs CI failures"
Browse files Browse the repository at this point in the history
This reverts commit 5d4fde1.

Signed-off-by: Ashmita Bohara <[email protected]>
  • Loading branch information
Ashmita152 committed Dec 2, 2020
1 parent 5d4fde1 commit ebc72f4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
7 changes: 4 additions & 3 deletions plugin/storage/es/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM python:3-alpine3.11

COPY esCleaner.py /es-index-cleaner/
COPY requirements.txt /es-index-cleaner/
# Temporary fix for https://github.com/jaegertracing/jaeger/issues/1494
RUN pip install urllib3==1.24.3

RUN pip install -r /es-index-cleaner/requirements.txt
RUN pip install elasticsearch elasticsearch-curator
COPY esCleaner.py /es-index-cleaner/

ENTRYPOINT ["python3", "/es-index-cleaner/esCleaner.py"]
7 changes: 4 additions & 3 deletions plugin/storage/es/Dockerfile.rollover
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM python:3-alpine3.11

# Temporary fix for https://github.com/jaegertracing/jaeger/issues/1494
RUN pip install urllib3==1.24.3

RUN pip install elasticsearch elasticsearch-curator pathlib2
COPY ./mappings/* /mappings/
COPY esRollover.py /es-rollover/
COPY requirements.txt /es-rollover/

RUN pip install -r /es-rollover/requirements.txt

ENTRYPOINT ["python3", "/es-rollover/esRollover.py"]
3 changes: 0 additions & 3 deletions plugin/storage/es/requirements.txt

This file was deleted.

0 comments on commit ebc72f4

Please sign in to comment.