-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run AZP in KRaft mode and create ZK regression pipeline (#10532)
Signed-off-by: Lukas Kral <[email protected]>
- Loading branch information
Showing
11 changed files
with
117 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 84 additions & 0 deletions
84
.azure/templates/jobs/system-tests/zookeeper_regression_jobs.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
jobs: | ||
- template: '../../steps/system_test_general.yaml' | ||
parameters: | ||
name: 'zookeeper_regression_kafka_oauth' | ||
display_name: 'zookeeper-regression-bundle I. - kafka + oauth' | ||
profile: 'azp_kafka_oauth' | ||
cluster_operator_install_type: 'bundle' | ||
strimzi_use_node_pools_in_tests: "false" | ||
strimzi_use_kraft_in_tests: "false" | ||
timeout: 360 | ||
releaseVersion: '${{ parameters.releaseVersion }}' | ||
kafkaVersion: '${{ parameters.kafkaVersion }}' | ||
|
||
- template: '../../steps/system_test_general.yaml' | ||
parameters: | ||
name: 'zookeeper_regression_security' | ||
display_name: 'zookeeper-regression-bundle II. - security' | ||
profile: 'azp_security' | ||
cluster_operator_install_type: 'bundle' | ||
strimzi_use_node_pools_in_tests: "false" | ||
strimzi_use_kraft_in_tests: "false" | ||
timeout: 360 | ||
releaseVersion: '${{ parameters.releaseVersion }}' | ||
kafkaVersion: '${{ parameters.kafkaVersion }}' | ||
|
||
- template: '../../steps/system_test_general.yaml' | ||
parameters: | ||
name: 'zookeeper_regression_dynconfig_listeners_tracing_watcher' | ||
display_name: 'zookeeper-regression-bundle III. - dynconfig + tracing + watcher' | ||
profile: 'azp_dynconfig_listeners_tracing_watcher' | ||
cluster_operator_install_type: 'bundle' | ||
strimzi_use_node_pools_in_tests: "false" | ||
strimzi_use_kraft_in_tests: "false" | ||
timeout: 360 | ||
releaseVersion: '${{ parameters.releaseVersion }}' | ||
kafkaVersion: '${{ parameters.kafkaVersion }}' | ||
|
||
- template: '../../steps/system_test_general.yaml' | ||
parameters: | ||
name: 'zookeeper_regression_operators' | ||
display_name: 'zookeeper-regression-bundle IV. - operators' | ||
profile: 'azp_operators' | ||
cluster_operator_install_type: 'bundle' | ||
strimzi_use_node_pools_in_tests: "false" | ||
strimzi_use_kraft_in_tests: "false" | ||
timeout: 360 | ||
releaseVersion: '${{ parameters.releaseVersion }}' | ||
kafkaVersion: '${{ parameters.kafkaVersion }}' | ||
|
||
- template: '../../steps/system_test_general.yaml' | ||
parameters: | ||
name: 'zookeeper_regression_rollingupdate_bridge' | ||
display_name: 'zookeeper-regression-bundle V. - rollingupdate' | ||
profile: 'azp_rolling_update_bridge' | ||
cluster_operator_install_type: 'bundle' | ||
strimzi_use_node_pools_in_tests: "false" | ||
strimzi_use_kraft_in_tests: "false" | ||
timeout: 360 | ||
releaseVersion: '${{ parameters.releaseVersion }}' | ||
kafkaVersion: '${{ parameters.kafkaVersion }}' | ||
|
||
- template: '../../steps/system_test_general.yaml' | ||
parameters: | ||
name: 'zookeeper_regression_connect_mirrormaker' | ||
display_name: 'zookeeper-regression-bundle VI. - connect + mirrormaker' | ||
profile: 'azp_connect_mirrormaker' | ||
cluster_operator_install_type: 'bundle' | ||
strimzi_use_node_pools_in_tests: "false" | ||
strimzi_use_kraft_in_tests: "false" | ||
timeout: 360 | ||
releaseVersion: '${{ parameters.releaseVersion }}' | ||
kafkaVersion: '${{ parameters.kafkaVersion }}' | ||
|
||
- template: '../../steps/system_test_general.yaml' | ||
parameters: | ||
name: 'zookeeper_regression_all_remaining' | ||
display_name: 'zookeeper-regression-bundle VII. - remaining system tests' | ||
profile: 'azp_remaining' | ||
cluster_operator_install_type: 'bundle' | ||
strimzi_use_node_pools_in_tests: "false" | ||
strimzi_use_kraft_in_tests: "false" | ||
timeout: 360 | ||
releaseVersion: '${{ parameters.releaseVersion }}' | ||
kafkaVersion: '${{ parameters.kafkaVersion }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Triggers | ||
# This pipeline will be triggered manually for a release or by github comment | ||
trigger: none | ||
pr: | ||
autoCancel: false | ||
branches: | ||
include: | ||
- '*' | ||
|
||
parameters: | ||
- name: releaseVersion | ||
displayName: Release Version | ||
type: string | ||
# If releaseVersion == latest then images will be built as part of the pipeline | ||
default: "latest" | ||
- name: kafkaVersion | ||
displayName: Kafka Version | ||
type: string | ||
# If kafkaVersion == latest, the latest supported version of Kafka is used | ||
default: "latest" | ||
|
||
# Regression tests are split into 6 jobs because of timeout set to 360 minutes for each job | ||
jobs: | ||
- template: 'templates/jobs/system-tests/zookeeper_regression_jobs.yaml' | ||
# This is needed to propagate releaseVersion parameter down to system_test_general.yaml | ||
parameters: | ||
releaseVersion: '${{ parameters.releaseVersion }}' | ||
kafkaVersion: '${{ parameters.kafkaVersion }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters