Skip to content

Commit

Permalink
chore: Update to ES 8 (#4406)
Browse files Browse the repository at this point in the history
Co-authored-by: Houssain Barouni <houssain.barouni@camunda.com>
Co-authored-by: Houssain Barouni <146710021+houssain-barouni@users.noreply.github.com>
  • Loading branch information
3 people committed Feb 7, 2024
1 parent 0fda051 commit 31bcecb
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 107 deletions.
102 changes: 0 additions & 102 deletions .ci/podSpecs/builderAgent.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.10
image: docker.elastic.co/elasticsearch/elasticsearch:8.9.2
env:
discovery.type: single-node
cluster.name: docker-cluster
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.springframework.stereotype.Component;

@Component
@Profile({"dev-data", "e2e-test"})
@Profile("dev-data")
@Conditional(ElasticSearchCondition.class)
public class DevDataGeneratorElasticSearch extends DevDataGeneratorAbstract
implements DataGenerator {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.springframework.stereotype.Component;

@Component
@Profile({"dev-data", "e2e-test"})
@Profile("dev-data")
@Conditional(OpenSearchCondition.class)
public class DevDataGeneratorOpenSearch extends DevDataGeneratorAbstract implements DataGenerator {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
public class ElasticsearchConnectorBasicAuthIT extends TasklistIntegrationTest {

static ElasticsearchContainer elasticsearch =
new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:7.16.3")
new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:8.9.2")
.withEnv(
Map.of(
"xpack.security.enabled", "true",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class ElasticsearchConnectorSSLAuthIT extends TasklistIntegrationTest {
static String certDir = new File("src/test/resources/certs").getAbsolutePath();

static ElasticsearchContainer elasticsearch =
new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:7.16.2")
new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:8.9.2")
.withCopyFileToContainer(
MountableFile.forHostPath("src/test/resources/certs/elastic-stack-ca.p12"),
"/usr/share/elasticsearch/config/certs/elastic-stack-ca.p12")
Expand Down

0 comments on commit 31bcecb

Please sign in to comment.