Skip to content

Commit e4807ae

Browse files
authored
Update default stack version to 8.0.0 (#698)
* Update default version to 8.0.0 * Fix: test packages * Temporarily disable EC2 tests * Fix: package_storage_candidate
1 parent 8a49bb8 commit e4807ae

File tree

8 files changed

+8
-9
lines changed

8 files changed

+8
-9
lines changed

.ci/Jenkinsfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ pipeline {
109109
'stack-command-default': generateTestCommandStage(command: 'test-stack-command-default', artifacts: ['build/elastic-stack-dump/stack/*/logs/*.log', 'build/elastic-stack-dump/stack/*/logs/fleet-server-internal/*']),
110110
'stack-command-oldest': generateTestCommandStage(command: 'test-stack-command-oldest', artifacts: ['build/elastic-stack-dump/stack/*/logs/*.log', 'build/elastic-stack-dump/stack/*/logs/fleet-server-internal/*']),
111111
'stack-command-7x': generateTestCommandStage(command: 'test-stack-command-7x', artifacts: ['build/elastic-stack-dump/stack/*/logs/*.log', 'build/elastic-stack-dump/stack/*/logs/fleet-server-internal/*']),
112-
'stack-command-800': generateTestCommandStage(command: 'test-stack-command-800', artifacts: ['build/elastic-stack-dump/stack/*/logs/*.log', 'build/elastic-stack-dump/stack/*/logs/fleet-server-internal/*']),
113112
'stack-command-8x': generateTestCommandStage(command: 'test-stack-command-8x', artifacts: ['build/elastic-stack-dump/stack/*/logs/*.log', 'build/elastic-stack-dump/stack/*/logs/fleet-server-internal/*']),
114113
'check-packages-with-kind': generateTestCommandStage(command: 'test-check-packages-with-kind', artifacts: ['build/test-results/*.xml', 'build/kubectl-dump.txt', 'build/elastic-stack-dump/check-*/logs/*.log', 'build/elastic-stack-dump/check-*/logs/fleet-server-internal/*'], junitArtifacts: true, publishCoverage: true),
115114
'check-packages-other': generateTestCommandStage(command: 'test-check-packages-other', artifacts: ['build/test-results/*.xml', 'build/elastic-stack-dump/check-*/logs/*.log', 'build/elastic-stack-dump/check-*/logs/fleet-server-internal/*'], junitArtifacts: true, publishCoverage: true),

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ test-stack-command-oldest:
6060
test-stack-command-7x:
6161
./scripts/test-stack-command.sh 7.17.1-SNAPSHOT
6262

63-
test-stack-command-800:
64-
./scripts/test-stack-command.sh 8.0.0-SNAPSHOT
65-
6663
test-stack-command-8x:
6764
./scripts/test-stack-command.sh 8.2.0-SNAPSHOT
6865

internal/install/stack_version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ package install
66

77
const (
88
// DefaultStackVersion is the default version of the stack
9-
DefaultStackVersion = "7.17.0"
9+
DefaultStackVersion = "8.0.0"
1010
)

test/packages/other/fields_tests/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ categories:
99
- custom
1010
release: experimental
1111
conditions:
12-
kibana.version: "^7.15.0"
12+
kibana.version: "^8.0.0"
1313
policy_templates:
1414
- name: sample
1515
title: Sample logs

test/packages/other/multiinput/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ release: experimental
1111
license: basic
1212
type: integration
1313
conditions:
14-
kibana.version: '^7.10.0'
14+
kibana.version: '^8.0.0'
1515
policy_templates:
1616
- name: test
1717
title: Test

test/packages/other/pipeline_tests/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ release: experimental
1111
license: basic
1212
type: integration
1313
conditions:
14-
kibana.version: '^7.10.0'
14+
kibana.version: '^8.0.0'
1515
policy_templates:
1616
- name: test
1717
title: Test

test/packages/package-storage/package_storage_candidate/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ categories:
99
- custom
1010
release: experimental
1111
conditions:
12-
kibana.version: "^7.16.0"
12+
kibana.version: "^8.0.0"
1313
screenshots:
1414
- src: /img/sample-screenshot.png
1515
title: Sample screenshot

test/packages/parallel/aws/data_stream/ec2_metrics/_dev/test/system/test-default-config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
wait_for_data_timeout: 20m # AWS CloudWatch may delay metrics delivery for more than 10 minutes.
2+
skip:
3+
reason: "EC2 module fails initialization (access_key_id undefined)"
4+
link: "https://github.com/elastic/integrations/issues/2692"
25
vars:
36
access_key_id: '{{AWS_ACCESS_KEY_ID}}'
47
secret_access_key: '{{AWS_SECRET_ACCESS_KEY}}'

0 commit comments

Comments
 (0)