-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Fix issue for ES jobs CI failures"
This reverts commit 5d4fde1. Signed-off-by: Ashmita Bohara <[email protected]>
- Loading branch information
1 parent
5d4fde1
commit ebc72f4
Showing
3 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file was deleted.
Oops, something went wrong.