diff --git a/INSTALL.md b/INSTALL.md index ac7db77ba..4a4131a54 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -73,7 +73,7 @@ This package uses the [Gradle](https://docs.gradle.org/current/userguide/usergui 4. Because we are supplying our own version of the RCA framework, the SHA might have changed. So, delete the old SHA file if it exists. The SHA will get updated during build time. - `rm -f licenses/performanceanalyzer-rca-1.3.3.0.jar.sha1` + `rm -f licenses/performanceanalyzer-rca-1.3.4.0.jar.sha1` 5. Trigger a gradle build. This builds the plugin, runs unit tests and creates the plugin jar. @@ -106,7 +106,7 @@ You can use the packaged Dockerfile and docker-compose.yml files [here](./docker 4. Copy the RCA framework artifact and the Performance Analyzer plugin JAR into this folder `cp /build/distributions/performance-analyzer-rca.zip ./` - `cp /build/distributions/opensearch-performance-analyzer-1.3.3.0-SNAPSHOT.zip ./` + `cp /build/distributions/opensearch-performance-analyzer-1.3.4.0-SNAPSHOT.zip ./` ### Installation diff --git a/build.gradle b/build.gradle index 687566e3d..9e6fc4e8f 100644 --- a/build.gradle +++ b/build.gradle @@ -52,7 +52,7 @@ distributions { } ext { - opensearch_version = System.getProperty("opensearch.version", "1.3.3-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "1.3.4-SNAPSHOT") isSnapshot = "true" == System.getProperty("build.snapshot", "true") gitPaBranch = '1.3' gitPaRepo = "https://github.com/opensearch-project/performance-analyzer.git" diff --git a/docker/Dockerfile b/docker/Dockerfile index e4671e628..d9748678d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -29,7 +29,7 @@ WORKDIR /usr/share/opensearch ENV BUST_CACHE 1576286189 # Download and extract defined OpenSearch version. -RUN curl -fsSL https://artifacts.opensearch.org/snapshots/core/opensearch/1.3.3-SNAPSHOT/opensearch-min-1.3.3-SNAPSHOT-linux-x64-latest.tar.gz | \ +RUN curl -fsSL https://artifacts.opensearch.org/snapshots/core/opensearch/1.3.4-SNAPSHOT/opensearch-min-1.3.4-SNAPSHOT-linux-x64-latest.tar.gz | \ tar zx --strip-components=1 RUN set -ex && for opensearchdirs in config data logs; do \ @@ -38,12 +38,12 @@ RUN set -ex && for opensearchdirs in config data logs; do \ COPY --chown=1000:0 opensearch.yml log4j2.properties config/ -COPY --chown=1000:0 performance-analyzer-rca-1.3.3.0-SNAPSHOT.zip config/ +COPY --chown=1000:0 performance-analyzer-rca-1.3.4.0-SNAPSHOT.zip config/ -COPY --chown=1000:0 opensearch-performance-analyzer-1.3.3.0-SNAPSHOT.zip /tmp/ +COPY --chown=1000:0 opensearch-performance-analyzer-1.3.4.0-SNAPSHOT.zip /tmp/ -RUN opensearch-plugin install --batch file:///tmp/opensearch-performance-analyzer-1.3.3.0-SNAPSHOT.zip; \ - rm /tmp/opensearch-performance-analyzer-1.3.3.0-SNAPSHOT.zip +RUN opensearch-plugin install --batch file:///tmp/opensearch-performance-analyzer-1.3.4.0-SNAPSHOT.zip; \ + rm /tmp/opensearch-performance-analyzer-1.3.4.0-SNAPSHOT.zip USER 0 @@ -51,7 +51,7 @@ USER 0 RUN chown -R opensearch:0 . && \ chmod -R g=u /usr/share/opensearch -RUN unzip config/performance-analyzer-rca-1.3.3.0-SNAPSHOT.zip +RUN unzip config/performance-analyzer-rca-1.3.4.0-SNAPSHOT.zip RUN chmod -R 755 /dev/shm ################################################################################ diff --git a/src/main/resources/plugin-descriptor.properties b/src/main/resources/plugin-descriptor.properties index 7212d620e..2718c7ce9 100644 --- a/src/main/resources/plugin-descriptor.properties +++ b/src/main/resources/plugin-descriptor.properties @@ -27,7 +27,7 @@ description=Performance Analyzer Plugin # # 'version': plugin's version -version=1.3.3.0 +version=1.3.4.0 # # 'name': the plugin name name=performance-analyzer @@ -42,4 +42,4 @@ classname=org.opensearch.performanceanalyzer.PerformanceAnalyzerPlugin java.version=1.8 # # 'opensearch.version' version of openSearch compiled against -opensearch.version=1.3.3 +opensearch.version=1.3.4