[Fleet] Re-enable registry version check in Docker template (#212382)

## Summary

We re-enabled registry version checks in
https://github.com/elastic/kibana/pull/208169 but missed this Docker
template.

cc @jsoriano
This commit is contained in:
Kyle Pollich 2025-02-25 12:33:59 -05:00 committed by GitHub
parent c75ecb3c51
commit 6d6db2fe66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,11 +24,6 @@ function generator({ imageFlavor }: TemplateContext) {
server.shutdownTimeout: "5s"
elasticsearch.hosts: [ "http://elasticsearch:9200" ]
monitoring.ui.container.elasticsearch.enabled: true
# Must be removed before v9 release
# Requires all registry packages to add v9 as a compatible semver range
# https://github.com/elastic/kibana/issues/192624
xpack.fleet.internal.registry.kibanaVersionCheckEnabled: false
`);
}