forked from opensearch-project/opensearch-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CI to run cargo make test fails out of the box (opensearch-pro…
…ject#120) Signed-off-by: Andriy Redko <[email protected]>
- Loading branch information
Showing
10 changed files
with
27 additions
and
21 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
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,10 +1,12 @@ | ||
ARG STACK_VERSION | ||
FROM "opensearchproject/opensearch:$STACK_VERSION" | ||
|
||
USER root | ||
COPY root-ca.pem /usr/share/opensearch/config/root-ca.pem | ||
RUN /usr/share/opensearch/opensearch-onetime-setup.sh | ||
COPY esnode.pem /usr/share/opensearch/config/esnode.pem | ||
COPY esnode-key.pem /usr/share/opensearch/config/esnode-key.pem | ||
RUN chmod a+wr /usr/share/opensearch/config/*pem | ||
|
||
USER opensearch | ||
RUN echo "appender.header_warning.type = HeaderWarningAppender" >> /usr/share/opensearch/config/log4j2.properties | ||
RUN echo "appender.header_warning.name = header_warning" >> /usr/share/opensearch/config/log4j2.properties | ||
RUN echo "logger.deprecation.name = org.opensearch.deprecation" >> /usr/share/opensearch/config/log4j2.properties | ||
RUN echo "logger.deprecation.level = deprecation" >> /usr/share/opensearch/config/log4j2.properties | ||
RUN echo "logger.deprecation.appenderRef.header_warning.ref = header_warning" >> /usr/share/opensearch/config/log4j2.properties |
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
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -28,8 +28,6 @@ | |
* GitHub history for details. | ||
*/ | ||
|
||
#![cfg(feature = "_integration")] | ||
|
||
pub mod common; | ||
use common::*; | ||
|
||
|