Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ca8c936
chore(NA): bump version to 9.5.0
mistic Apr 9, 2026
8818cd2
Merge branch 'main' into bump-9.5.0
tylersmalley Apr 10, 2026
e5ed205
Merge branch 'main' into bump-9.5.0
tylersmalley Apr 10, 2026
bfc2db6
Merge branch 'main' into bump-9.5.0
tylersmalley Apr 10, 2026
35c1d93
Merge branch 'main' into bump-9.5.0
mistic Apr 10, 2026
06c66b4
Merge branch 'main' into bump-9.5.0
mistic Apr 10, 2026
f39ed36
fix(NA): jest tests
mistic Apr 10, 2026
5c90689
Merge branch 'bump-9.5.0' of github.com:mistic/kibana into bump-9.5.0
mistic Apr 10, 2026
5c3be19
Merge branch 'main' into bump-9.5.0
mistic Apr 11, 2026
3507c9c
Merge branch 'main' into bump-9.5.0
mistic Apr 11, 2026
c90f0d4
Merge branch 'main' into bump-9.5.0
mistic Apr 11, 2026
50d95d3
Merge branch 'main' into bump-9.5.0
delanni Apr 13, 2026
6fccead
Merge branch 'main' into bump-9.5.0
mistic Apr 14, 2026
4503b9f
Merge branch 'main' into bump-9.5.0
mistic Apr 15, 2026
029cbcd
Merge branch 'main' into bump-9.5.0
mistic Apr 15, 2026
d3d61df
Merge branch 'main' into bump-9.5.0
mistic Apr 16, 2026
58d9e42
use snapshot ES when running cypress, temporarily
delanni Apr 16, 2026
30d27f8
hard-code ES Snapshot 9.4.0-SNAPSHOT
delanni Apr 16, 2026
09ffb79
Merge branch 'main' into bump-9.5.0-cypress-no-es-docker
delanni Apr 16, 2026
6e62c7e
fix(ci): route serverless cypress to serverless ES even when CYPRESS_…
patrykkopycinski Apr 17, 2026
47682d1
Changes from node scripts/eslint_all_files --no-cache --fix
kibanamachine Apr 17, 2026
2bd247b
Merge branch 'main' into pr-263740-bump-9.5.0-cypress-no-es-docker
patrykkopycinski Apr 19, 2026
4eba00a
Merge branch 'main' into pr-263740-bump-9.5.0-cypress-no-es-docker
patrykkopycinski Apr 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .buildkite/scripts/common/setup_job_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ fi

source .buildkite/scripts/common/util.sh

# Opt out of Docker ES usage from Cypress while the 9.5.0 ES Docker image is not
# yet published (unified release must run first to publish it). Cypress suites
# will fall back to ES snapshot tar.gz via kbn-es.
export CYPRESS_ES_FROM=snapshot

# Set up general-purpose tokens and credentials
{
BUILDKITE_TOKEN="$(vault_get buildkite-ci buildkite_token_all_jobs)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,9 +420,14 @@ ${JSON.stringify(
let fleetServer: StartedFleetServer | undefined;
let shutdownEs;

// `CYPRESS_ES_FROM` must only override the *stateful* ES provisioning path.
// Serverless Cypress suites require the `kibana-ci/elasticsearch-serverless`
// Docker image and will fail to boot when run against a stateful snapshot
// tar.gz (e.g. `unknown setting [xpack.security.authc.native_roles.enabled]`
// or `unknown setting [serverless.search.enable_replicas_for_instant_failover]`).
const esFromEnv = process.env.CYPRESS_ES_FROM;
const configEsFrom = config.get('esTestCluster.from');
const esFrom = esFromEnv || (configEsFrom === 'serverless' ? 'serverless' : 'docker');
const esFrom = configEsFrom === 'serverless' ? 'serverless' : esFromEnv || 'docker';

try {
shutdownEs = await pRetry(
Expand Down
Loading