mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[serverless] Split prod quality gate env into prod-canary/noncanary (#168462)
This commit is contained in:
parent
0af2207d18
commit
b26f58292c
3 changed files with 31 additions and 0 deletions
|
@ -0,0 +1,15 @@
|
|||
# These pipeline steps constitute the quality gate for your service within the production-canary environment.
|
||||
# Incorporate any necessary additional logic to validate the service's integrity.
|
||||
# A failure in this pipeline build will prevent further progression to the subsequent stage.
|
||||
|
||||
steps:
|
||||
- label: ":pipeline::rocket::seedling: Trigger control-plane e2e tests"
|
||||
trigger: "ess-k8s-production-e2e-tests" # https://buildkite.com/elastic/ess-k8s-production-e2e-tests
|
||||
build:
|
||||
env:
|
||||
REGION_ID: aws-us-east-1
|
||||
NAME_PREFIX: ci_test_kibana-promotion_
|
||||
message: "${BUILDKITE_MESSAGE} (triggered by pipeline.tests-production-canary.yaml)"
|
||||
|
||||
- label: ":cookie: 24h bake time before continuing promotion"
|
||||
command: "sleep 86400"
|
|
@ -0,0 +1,12 @@
|
|||
# These pipeline steps constitute the quality gate for your service within the production-noncanary environment.
|
||||
# Incorporate any necessary additional logic to validate the service's integrity.
|
||||
# A failure in this pipeline build will prevent further progression to the subsequent stage.
|
||||
|
||||
steps:
|
||||
- label: ":pipeline::rocket::seedling: Trigger control-plane e2e tests"
|
||||
trigger: "ess-k8s-production-e2e-tests" # https://buildkite.com/elastic/ess-k8s-production-e2e-tests
|
||||
build:
|
||||
env:
|
||||
REGION_ID: aws-us-east-1
|
||||
NAME_PREFIX: ci_test_kibana-promotion_
|
||||
message: "${BUILDKITE_MESSAGE} (triggered by pipeline.tests-production-noncanary.yaml)"
|
|
@ -2,6 +2,10 @@
|
|||
# Incorporate any necessary additional logic to validate the service's integrity.
|
||||
# A failure in this pipeline build will prevent further progression to the subsequent stage.
|
||||
|
||||
# DEPRECATION NOTICE:
|
||||
# PRODUCTION WILL SOON BE SPLIT INTO "CANARY" AND "NONCANARY" AND THIS FILE WILL BE DELETED.
|
||||
# ENSURE ANY CHANGE MADE TO THIS FILE IS REFLECTED IN THOSE FILES AS WELL.
|
||||
|
||||
steps:
|
||||
- label: ":pipeline::rocket::seedling: Trigger control-plane e2e tests"
|
||||
trigger: "ess-k8s-production-e2e-tests" # https://buildkite.com/elastic/ess-k8s-production-e2e-tests
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue