Skip to content

Commit

Permalink
Version bump on 2.x to 2.8 (#370)
Browse files Browse the repository at this point in the history
* Upating 2.x to 2.8 post the 2.7.0 version release

* Reverting commons-io to 2.7

Signed-off-by: Khushboo Rajput <khushbr@amazon.com>

---------

Signed-off-by: Khushboo Rajput <khushbr@amazon.com>
  • Loading branch information
khushbr authored May 18, 2023
1 parent eb1c1df commit 55d3048
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ You can use the packaged Dockerfile and docker-compose.yml files [here](./docker

2. Build and tag the Docker image with our RCA framework.

`docker build -t opensearch/pa-rca:2.7 .`
`docker build -t opensearch/pa-rca:2.8 .`

3. Spin up a two node cluster as follows:

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
buildDockerJdkVersion = System.getProperty("build.docker_jdk_ver", "11")

// 2.7.0-SNAPSHOT -> 2.7.0.0-SNAPSHOT
// 2.8.0-SNAPSHOT -> 2.8.0.0-SNAPSHOT
version_tokens = opensearch_version.tokenize('-')
opensearch_build = version_tokens[0] + '.0'
if (buildVersionQualifier) {
Expand Down Expand Up @@ -464,7 +464,7 @@ task copyReaderMetricsFiles(type: Copy) {
task buildDocker(type: Exec) {
dependsOn(copyAllArtifacts)
workingDir(dockerArtifactsDir)
commandLine 'docker', 'build', '-t', 'opensearch/pa-rca:2.7', '.', '--build-arg', "JDK_VER=${buildDockerJdkVersion}"
commandLine 'docker', 'build', '-t', 'opensearch/pa-rca:2.8', '.', '--build-arg', "JDK_VER=${buildDockerJdkVersion}"
}

task runDocker(type: Exec) {
Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version: '2.1'
services:
opensearch1:
container_name: opensearch1
image: opensearch/pa-rca:2.7
image: opensearch/pa-rca:2.8
mem_limit: 4g
networks:
opensearchnet:
Expand All @@ -34,7 +34,7 @@ services:
container_name: opensearch2
environment:
- node.master=false
image: opensearch/pa-rca:2.7
image: opensearch/pa-rca:2.8
mem_limit: 4g
networks:
- opensearchnet
Expand Down

0 comments on commit 55d3048

Please sign in to comment.