Skip to content

Commit

Permalink
opensearch 2.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marevol committed Nov 8, 2024
1 parent 38b57a1 commit dd0e7b1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
17 changes: 17 additions & 0 deletions opensearch/2.18/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM opensearchproject/opensearch:2.18.0

ARG ANALYSIS_EXTENSION_PLUGIN=org.codelibs.opensearch:opensearch-analysis-extension:2.18.0
ARG ANALYSIS_FESS_PLUGIN=org.codelibs.opensearch:opensearch-analysis-fess:2.18.0
ARG MINHASH_PLUGIN=org.codelibs.opensearch:opensearch-minhash:2.18.0
ARG CONFIGSYNC_PLUGIN=org.codelibs.opensearch:opensearch-configsync:2.18.0

RUN /usr/share/opensearch/bin/opensearch-plugin remove opensearch-security-analytics && \
/usr/share/opensearch/bin/opensearch-plugin remove opensearch-performance-analyzer && \
/usr/share/opensearch/bin/opensearch-plugin install $ANALYSIS_FESS_PLUGIN -b && \
/usr/share/opensearch/bin/opensearch-plugin install $ANALYSIS_EXTENSION_PLUGIN -b && \
/usr/share/opensearch/bin/opensearch-plugin install $MINHASH_PLUGIN -b && \
/usr/share/opensearch/bin/opensearch-plugin install $CONFIGSYNC_PLUGIN -b && \
echo 'configsync.config_path: ${FESS_DICTIONARY_PATH}' >> /usr/share/opensearch/config/opensearch.yml && \
mkdir /usr/share/opensearch/config/dictionary && \
chown opensearch /usr/share/opensearch/config/dictionary

10 changes: 5 additions & 5 deletions opensearch/snapshot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM opensearchproject/opensearch:2.17.0
FROM opensearchproject/opensearch:2.18.0

ARG ANALYSIS_EXTENSION_PLUGIN=org.codelibs.opensearch:opensearch-analysis-extension:2.17.0
ARG ANALYSIS_FESS_PLUGIN=org.codelibs.opensearch:opensearch-analysis-fess:2.17.0
ARG MINHASH_PLUGIN=org.codelibs.opensearch:opensearch-minhash:2.17.0
ARG CONFIGSYNC_PLUGIN=org.codelibs.opensearch:opensearch-configsync:2.17.0
ARG ANALYSIS_EXTENSION_PLUGIN=org.codelibs.opensearch:opensearch-analysis-extension:2.18.0
ARG ANALYSIS_FESS_PLUGIN=org.codelibs.opensearch:opensearch-analysis-fess:2.18.0
ARG MINHASH_PLUGIN=org.codelibs.opensearch:opensearch-minhash:2.18.0
ARG CONFIGSYNC_PLUGIN=org.codelibs.opensearch:opensearch-configsync:2.18.0

RUN /usr/share/opensearch/bin/opensearch-plugin remove opensearch-security-analytics && \
/usr/share/opensearch/bin/opensearch-plugin remove opensearch-performance-analyzer && \
Expand Down

0 comments on commit dd0e7b1

Please sign in to comment.