Skip to content

Commit

Permalink
Replace value in kibana.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jen-huang committed Oct 29, 2024
1 parent 483dba8 commit 65cfbcf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 0 additions & 5 deletions config/kibana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,3 @@
# Maximum number of documents loaded by each shard to generate autocomplete suggestions.
# This value must be a whole number greater than zero. Defaults to 100_000
#unifiedSearch.autocomplete.valueSuggestions.terminateAfter: 100000

# 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
8 changes: 7 additions & 1 deletion x-pack/plugins/fleet/server/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@ export const config: PluginConfigDescriptor = {
retrySetupOnBoot: schema.boolean({ defaultValue: false }),
registry: schema.object(
{
// Must be set back to `true` before v9 release
// Requires all registry packages to add v9 as a compatible semver range
// https://github.com/elastic/kibana/issues/192624
kibanaVersionCheckEnabled: schema.boolean({ defaultValue: false }),
excludePackages: schema.arrayOf(schema.string(), { defaultValue: [] }),
spec: schema.object(
Expand Down Expand Up @@ -248,7 +251,10 @@ export const config: PluginConfigDescriptor = {
},
{
defaultValue: {
kibanaVersionCheckEnabled: true,
// Must be set back to `true` before v9 release
// Requires all registry packages to add v9 as a compatible semver range
// https://github.com/elastic/kibana/issues/192624
kibanaVersionCheckEnabled: false,
capabilities: [],
excludePackages: [],
spec: {
Expand Down

0 comments on commit 65cfbcf

Please sign in to comment.