fix: revert ES_VERSION to v7 for v1.28.x compatibility#317
Merged
rkannan82 merged 1 commit intorelease/v1.28.xfrom Mar 18, 2026
Merged
fix: revert ES_VERSION to v7 for v1.28.x compatibility#317rkannan82 merged 1 commit intorelease/v1.28.xfrom
rkannan82 merged 1 commit intorelease/v1.28.xfrom
Conversation
The v1.28.x auto-setup image only contains v7 ES schema files (cluster_settings_v7.json, index_template_v7.json). Setting ES_VERSION=v8 causes auto-setup to look for cluster_settings_v8.json which doesn't exist. ES 8.5.0 is backwards-compatible with v7 API calls, so using ES_VERSION=v7 with ELASTICSEARCH_VERSION=8.5.0 is the correct configuration for v1.28.x. Made-with: Cursor
prathyushpv
approved these changes
Mar 18, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Reverts
ES_VERSIONfromv8back tov7indocker-compose.yml.PR #315 set
ES_VERSION=v8(mirroring the v1.29.x fix), but v1.28.x auto-setup only contains v7 schema files (cluster_settings_v7.json,index_template_v7.json). WithES_VERSION=v8, auto-setup tries to loadcluster_settings_v8.jsonwhich doesn't exist, causing:The correct config for v1.28.x is:
ELASTICSEARCH_VERSION=8.5.0(run ES 8.5.0 — from PR fix: update Elasticsearch to 8.5.0 and ES_VERSION to v8 for v1.28.x #315)ES_VERSION=v7(use v7 schema files — ES 8.x is backwards-compatible)This is blocking Docker image promotion for v1.28.3.
Test plan
Made with Cursor