Skip to content

Commit

Permalink
Upgrade Elasticsearch used in integration tests
Browse files Browse the repository at this point in the history
Signed-off-by: Oliver Trosien <[email protected]>
  • Loading branch information
otrosien committed Nov 7, 2024
1 parent 8c5a323 commit 5a1c1d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions cmd/e2e/autoscale_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

func TestEDSCPUAutoscaleUP8(t *testing.T) {
t.Parallel()
runTestEDSCPUAutoScaleUP(t, "8.6.2", "es8-config")
runTestEDSCPUAutoScaleUP(t, "8.15.3", "es8-config")
}

func runTestEDSCPUAutoScaleUP(t *testing.T, version, configMap string) {
Expand Down Expand Up @@ -54,14 +54,14 @@ func runTestEDSCPUAutoScaleUP(t *testing.T, version, configMap string) {
require.NoError(t, err)
}

func TestEDSAutoscaleUPOnShardCount6(t *testing.T) {
func TestEDSAutoscaleUPOnShardCount8(t *testing.T) {
t.Parallel()
runTestEDSAutoscaleUPOnShardCount(t, "8.6.2", "es8-config")
runTestEDSAutoscaleUPOnShardCount(t, "8.15.3", "es8-config")
}

func TestEDSAutoscaleUPOnShardCount7(t *testing.T) {
t.Parallel()
runTestEDSAutoscaleUPOnShardCount(t, "7.17.2", "es7-config")
runTestEDSAutoscaleUPOnShardCount(t, "7.17.25", "es7-config")
}

func runTestEDSAutoscaleUPOnShardCount(t *testing.T, version, configMap string) {
Expand Down
2 changes: 1 addition & 1 deletion deploy/e2e/apply/es7-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
limits:
memory: 720Mi
cpu: 100m
image: "docker.elastic.co/elasticsearch/elasticsearch:7.17.2"
image: "docker.elastic.co/elasticsearch/elasticsearch:7.17.25"
env:
- name: "node.name"
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion deploy/e2e/apply/es8-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
limits:
memory: 1Gi
cpu: 100m
image: "docker.elastic.co/elasticsearch/elasticsearch:8.6.2"
image: "docker.elastic.co/elasticsearch/elasticsearch:8.15.3"
env:
- name: "node.name"
valueFrom:
Expand Down

0 comments on commit 5a1c1d2

Please sign in to comment.