Skip to content

Commit

Permalink
pipeline for serverless kibana release
Browse files Browse the repository at this point in the history
  • Loading branch information
imkarrer committed Aug 28, 2023
1 parent f9eda80 commit a37530e
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .buildkite/pipelines/pipeline.kibana-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
steps:
- label: ":releasethekraken: Release kibana"
# https://regex101.com/r/ScgA8Y/1
if: 'BUILDKITE_TAG =~ "/^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$$/
"'
trigger: gpctl-promote
build:
env:
SERVICE_COMMIT_HASH: "${BUILDKITE_COMMIT:0:12}"
REMOTE_SERVICE_CONFIG: https://raw.githubusercontent.com/elastic/serverless-gitops/main/gen/gpctl/kibana/tagged-release.yaml
34 changes: 34 additions & 0 deletions catalog-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,38 @@ spec:
lifecycle: production
system: control-plane

---

apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: kibana-release
description: Definition of the kibana release pipeline
links:
- title: Pipeline
url: https://buildkite.com/elastic/kibana-release
spec:
type: buildkite-pipeline
owner: group:kibana-operations
system: buildkite
implementation:
apiVersion: buildkite.elastic.dev/v1
kind: Pipeline
metadata:
name: kibana-release
description: Pipeline that releases kibana by triggering the release flow through qa, staging, and production
spec:
repository: elastic/kibana
pipeline_file: ./.buildkite/pipelines/pipeline.kibana-release.yaml
provider_settings:
build_branches: false
build_pull_request_forks: false
build_tags: true
# https://regex101.com/r/ScgA8Y/1
filter_condition: 'build.tag =~ "/^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$$/
"'
filter_enabled: true
trigger_mode: none
teams:
kibana-operations:
access_level: BUILD_AND_READ

0 comments on commit a37530e

Please sign in to comment.