Skip to content

Commit adb4bdf

Browse files
gsoldevilakibanamachine
andauthoredMar 20, 2025
SKA: Extract list of Kibana solutions into a dedicated package (elastic#213353)
## Summary The intent is to have a centralised place to store the list of Kibana solutions and serverless project types. To that end, this PR creates a `@kbn/projects-solutions-groups` package. It also adds the new solution type `'chat'`. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
1 parent dcbefc3 commit adb4bdf

File tree

83 files changed

+767
-108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+767
-108
lines changed
 

‎.buildkite/scripts/steps/cloud/purge_projects.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,16 @@ import axios from 'axios';
1212
import { getKibanaDir } from '#pipeline-utils';
1313

1414
async function getPrProjects() {
15-
const match = /^(keep.?)?kibana-pr-([0-9]+)-(elasticsearch|security|observability)$/;
15+
// BOOKMARK - List of Kibana project types
16+
const match = /^(keep.?)?kibana-pr-([0-9]+)-(elasticsearch|security|observability|chat)$/;
1617
try {
18+
// BOOKMARK - List of Kibana project types
1719
return (
1820
await Promise.all([
1921
projectRequest.get('/api/v1/serverless/projects/elasticsearch'),
2022
projectRequest.get('/api/v1/serverless/projects/security'),
2123
projectRequest.get('/api/v1/serverless/projects/observability'),
24+
// TODO handle the new 'chat' project type - https://elastic.slack.com/archives/C5UDAFZQU/p1741692053429579
2225
])
2326
)
2427
.map((response) => response.data.items)
@@ -47,11 +50,13 @@ async function deleteProject({
4750
id,
4851
name,
4952
}: {
50-
type: 'elasticsearch' | 'observability' | 'security';
53+
// BOOKMARK - List of Kibana project types
54+
type: 'elasticsearch' | 'security' | 'observability' | 'chat';
5155
id: number;
5256
name: string;
5357
}) {
5458
try {
59+
// TODO handle the new 'chat' project type, and ideally rename 'elasticsearch' to 'search'
5560
await projectRequest.delete(`/api/v1/serverless/projects/${type}/${id}`);
5661

5762
execSync(`.buildkite/scripts/common/deployment_credentials.sh unset ${name}`, {

‎.buildkite/scripts/steps/serverless/deploy.sh

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ KIBANA_IMAGE="docker.elastic.co/kibana-ci/kibana-serverless:pr-$BUILDKITE_PULL_R
99

1010
deploy() {
1111
PROJECT_TYPE=$1
12+
# BOOKMARK - List of Kibana solutions
1213
case $PROJECT_TYPE in
1314
elasticsearch)
1415
PROJECT_TYPE_LABEL='Elasticsearch Serverless'

0 commit comments

Comments
 (0)