From d91d81935d2be10ea6467eb39ec6be3a7da519c2 Mon Sep 17 00:00:00 2001 From: opensearch-ci-bot Date: Tue, 12 Mar 2024 00:06:58 +0000 Subject: [PATCH] Increment version to 1.3.16-SNAPSHOT Signed-off-by: opensearch-ci-bot --- INSTALL.md | 4 ++-- build.gradle | 2 +- docker/Dockerfile | 14 +++++++------- src/main/resources/plugin-descriptor.properties | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 27451d9b6..b39f0b853 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.15.0.jar.sha1` + `rm -f licenses/performanceanalyzer-rca-1.3.16.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.15.0-SNAPSHOT.zip ./` + `cp /build/distributions/opensearch-performance-analyzer-1.3.16.0-SNAPSHOT.zip ./` ### Installation diff --git a/build.gradle b/build.gradle index 9a5937245..27ee42393 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { ext { - opensearch_version = System.getProperty("opensearch.version", "1.3.15-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "1.3.16-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 51cef671e..200aa01be 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.15-SNAPSHOT/opensearch-min-1.3.15-SNAPSHOT-linux-x64-latest.tar.gz | \ +RUN curl -fsSL https://artifacts.opensearch.org/snapshots/core/opensearch/1.3.16-SNAPSHOT/opensearch-min-1.3.16-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.15.0-SNAPSHOT.zip config/ +COPY --chown=1000:0 performance-analyzer-rca-1.3.16.0-SNAPSHOT.zip config/ -COPY --chown=1000:0 opensearch-performance-analyzer-1.3.15.0-SNAPSHOT.zip /tmp/ +COPY --chown=1000:0 opensearch-performance-analyzer-1.3.16.0-SNAPSHOT.zip /tmp/ -RUN opensearch-plugin install --batch file:///tmp/opensearch-performance-analyzer-1.3.15.0-SNAPSHOT.zip; \ - rm /tmp/opensearch-performance-analyzer-1.3.15.0-SNAPSHOT.zip +RUN opensearch-plugin install --batch file:///tmp/opensearch-performance-analyzer-1.3.16.0-SNAPSHOT.zip; \ + rm /tmp/opensearch-performance-analyzer-1.3.16.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.15.0-SNAPSHOT.zip +RUN unzip config/performance-analyzer-rca-1.3.16.0-SNAPSHOT.zip RUN chmod -R 755 /dev/shm ################################################################################ @@ -123,7 +123,7 @@ EXPOSE 9200 9300 9600 9650 LABEL org.label-schema.schema-version="1.0" \ org.label-schema.name="opensearch" \ - org.label-schema.version="1.3.15" \ + org.label-schema.version="1.3.16" \ org.label-schema.url="https://opensearch.org/" \ org.label-schema.vcs-url="https://github.com/opensearch-project/opensearch-build" \ org.label-schema.license="Apache-2.0" \ diff --git a/src/main/resources/plugin-descriptor.properties b/src/main/resources/plugin-descriptor.properties index 386405567..c4eaf85e4 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.15.0 +version=1.3.16.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.15 +opensearch.version=1.3.16