From 3c1e9ded97fb13b6f88202de659dfeb22e7d53ed Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 12:55:11 -0700 Subject: [PATCH] Increment version to 1.3.14-SNAPSHOT (#490) Signed-off-by: opensearch-ci-bot Co-authored-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 27f14d284..ab971630b 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.13.0.jar.sha1` + `rm -f licenses/performanceanalyzer-rca-1.3.14.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.13.0-SNAPSHOT.zip ./` + `cp /build/distributions/opensearch-performance-analyzer-1.3.14.0-SNAPSHOT.zip ./` ### Installation diff --git a/build.gradle b/build.gradle index a2a154f9f..605c486a8 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { ext { - opensearch_version = System.getProperty("opensearch.version", "1.3.13-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "1.3.14-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 58cd9e652..1d00fe128 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.13-SNAPSHOT/opensearch-min-1.3.13-SNAPSHOT-linux-x64-latest.tar.gz | \ +RUN curl -fsSL https://artifacts.opensearch.org/snapshots/core/opensearch/1.3.14-SNAPSHOT/opensearch-min-1.3.14-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.13.0-SNAPSHOT.zip config/ +COPY --chown=1000:0 performance-analyzer-rca-1.3.14.0-SNAPSHOT.zip config/ -COPY --chown=1000:0 opensearch-performance-analyzer-1.3.13.0-SNAPSHOT.zip /tmp/ +COPY --chown=1000:0 opensearch-performance-analyzer-1.3.14.0-SNAPSHOT.zip /tmp/ -RUN opensearch-plugin install --batch file:///tmp/opensearch-performance-analyzer-1.3.13.0-SNAPSHOT.zip; \ - rm /tmp/opensearch-performance-analyzer-1.3.13.0-SNAPSHOT.zip +RUN opensearch-plugin install --batch file:///tmp/opensearch-performance-analyzer-1.3.14.0-SNAPSHOT.zip; \ + rm /tmp/opensearch-performance-analyzer-1.3.14.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.13.0-SNAPSHOT.zip +RUN unzip config/performance-analyzer-rca-1.3.14.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.13" \ + org.label-schema.version="1.3.14" \ 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 91768975e..0bc8f79e0 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.13.0 +version=1.3.14.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.13 +opensearch.version=1.3.14