Skip to content

Commit 9503a84

Browse files
committed
update es from 8.19.14 to 8.19.17
1 parent c5cd748 commit 9503a84

7 files changed

Lines changed: 17 additions & 17 deletions

File tree

dev-system/compose.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
build:
1212
context: .
1313
dockerfile: resources/elasticsearch/Dockerfile.elasticsearch
14-
image: cmr-elasticsearch:8.19.14
14+
image: cmr-elasticsearch:8.19.17
1515
ports:
1616
- 9211:9200
1717
- 9300:9300
@@ -37,7 +37,7 @@ services:
3737
build:
3838
context: .
3939
dockerfile: resources/elasticsearch/Dockerfile.elasticsearch
40-
image: cmr-elasticsearch:8.19.14
40+
image: cmr-elasticsearch:8.19.17
4141
ports:
4242
- 9210:9200
4343
- 9301:9300
@@ -62,7 +62,7 @@ services:
6262
container_name: cmr-kibana
6363
depends_on:
6464
- elasticsearch
65-
image: docker.elastic.co/kibana/kibana:8.19.14
65+
image: docker.elastic.co/kibana/kibana:8.19.17
6666
ports:
6767
- 5602:5601
6868
environment:
@@ -76,7 +76,7 @@ services:
7676
container_name: cmr-gran-kibana
7777
depends_on:
7878
- gran-elasticsearch
79-
image: docker.elastic.co/kibana/kibana:8.19.14
79+
image: docker.elastic.co/kibana/kibana:8.19.17
8080
ports:
8181
- 5601:5601
8282
environment:

dev-system/resources/elasticsearch/Dockerfile.elasticsearch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.elastic.co/elasticsearch/elasticsearch:8.19.14
1+
FROM docker.elastic.co/elasticsearch/elasticsearch:8.19.17
22

33
COPY plugins /usr/share/elasticsearch/plugins/
44
COPY embedded-security.policy /usr/share/elasticsearch/config/embedded-security.policy

elastic-utils-lib/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(def elastic-version "8.19.14")
1+
(def elastic-version "8.19.17")
22

33
(defproject nasa-cmr/cmr-elastic-utils-lib "0.1.0-SNAPSHOT"
44
:description "A library containing utilities for dealing with Elasticsearch."

elastic-utils-lib/src/cmr/elastic_utils/embedded_elastic_server.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
(def ^:private elasticsearch-official-docker-image
1818
"Official docker image."
19-
"docker.elastic.co/elasticsearch/elasticsearch:8.19.14")
19+
"docker.elastic.co/elasticsearch/elasticsearch:8.19.17")
2020

2121
(def ^:private kibana-official-docker-image
2222
"Official kibana docker image."
23-
"docker.elastic.co/kibana/kibana:8.19.14")
23+
"docker.elastic.co/kibana/kibana:8.19.17")
2424

2525
(defn- build-kibana
2626
"Build kibana in an embedded docker."

es-spatial-plugin/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To package the spatial script for use in elastic:
2727

2828
This will create a zip in target/ ready for installation in elasticsearch.
2929

30-
## ES Spatial Lib with Elastic 8.19.14 changes and Java 17
30+
## ES Spatial Lib with Elastic 8.19.17 changes and Java 17
3131

3232
Due to changes in 8.x requirements for plugins, we updated the es-spatial-lib plugin in the following ways to be able to work with 8.x
3333

@@ -85,12 +85,12 @@ Here are the instructions on how to create the zip and install on your remote ES
8585
- Search for that record using a spatial extent search ( a spatial extent search will invoke the spatial plugin.) You should get your search
8686
response back without crashing elastic search.
8787

88-
### docker-compose.yml for ES 8.19.14 for GRAN CLUSTER for local runs
88+
### docker-compose.yml for ES 8.19.17 for GRAN CLUSTER for local runs
8989

9090
```
9191
services:
9292
elasticsearch:
93-
image: elasticsearch:8.19.14
93+
image: elasticsearch:8.19.17
9494
ports:
9595
- 9210:9200
9696
- 9300:9300
@@ -109,7 +109,7 @@ services:
109109
container_name: cmr-gran-kibana
110110
depends_on:
111111
- elasticsearch
112-
image: docker.elastic.co/kibana/kibana:8.19.14
112+
image: docker.elastic.co/kibana/kibana:8.19.17
113113
ports:
114114
- 5601:5601
115115
environment:
@@ -124,12 +124,12 @@ networks:
124124
elasticsearch-network: {}
125125
```
126126

127-
### docker-compose.yml for ES 8.19.14 for NON-GRAN CLUSTER for local runs
127+
### docker-compose.yml for ES 8.19.17 for NON-GRAN CLUSTER for local runs
128128

129129
```
130130
services:
131131
elasticsearch:
132-
image: elasticsearch:8.19.14
132+
image: elasticsearch:8.19.17
133133
ports:
134134
- 9211:9200
135135
- 9301:9300
@@ -148,7 +148,7 @@ services:
148148
container_name: cmr-kibana
149149
depends_on:
150150
- elasticsearch
151-
image: docker.elastic.co/kibana/kibana:8.19.14
151+
image: docker.elastic.co/kibana/kibana:8.19.17
152152
ports:
153153
- 5602:5601
154154
environment:

es-spatial-plugin/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
(def es-deps-target-path
2424
"es-deps")
2525

26-
(def elastic-version "8.19.14")
26+
(def elastic-version "8.19.17")
2727

2828
(defproject nasa-cmr/cmr-es-spatial-plugin "0.1.0-SNAPSHOT"
2929
:description "A Elastic Search plugin that enables spatial search entirely within elastic."

es-spatial-plugin/resources/plugin/plugin-descriptor.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ classname=cmr.elasticsearch.plugins.SpatialSearchPlugin
1616
java.version=17
1717
#
1818
# 'elasticsearch.version': version of elasticsearch compiled against
19-
elasticsearch.version=8.19.14
19+
elasticsearch.version=8.19.17

0 commit comments

Comments
 (0)