mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 17:04:01 -04:00
## Summary Introduced the console.ui.embeddedEnabled (boolean) value to allow disabling the embedded console in serverless security and observability projects. This also replaces an index management specific config value to do that same thing which is removed here as well. Adding this console configuration will allow us to have one value to set instead of N which was the pattern I had started to use, but then decided against. ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [x] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
# Search Project Config
|
|
|
|
## Disable APM and Uptime, enable Enterprise Search
|
|
xpack.apm.enabled: false
|
|
|
|
xpack.cloudSecurityPosture.enabled: false
|
|
xpack.infra.enabled: false
|
|
xpack.observabilityLogsExplorer.enabled: false
|
|
xpack.observability.enabled: false
|
|
xpack.securitySolution.enabled: false
|
|
xpack.serverless.observability.enabled: false
|
|
enterpriseSearch.enabled: false
|
|
xpack.fleet.enabled: false
|
|
|
|
## Cloud settings
|
|
xpack.cloud.serverless.project_type: search
|
|
|
|
## Enable the Serverless Search plugin
|
|
xpack.serverless.search.enabled: true
|
|
|
|
## Set the home route
|
|
uiSettings.overrides.defaultRoute: /app/elasticsearch
|
|
|
|
## Set the dev project switcher current type
|
|
xpack.serverless.plugin.developer.projectSwitcher.currentType: 'search'
|
|
|
|
# Specify in telemetry the project type
|
|
telemetry.labels.serverless: search
|
|
|
|
# Alerts config
|
|
xpack.actions.enabledActionTypes: ['.email', '.index', '.slack', '.jira', '.webhook', '.teams']
|
|
|
|
# Customize empty page state for analytics apps
|
|
no_data_page.analyticsNoDataPageFlavor: 'serverless_search'
|
|
|
|
# Disable Dev tools
|
|
xpack.grokdebugger.enabled: false
|
|
xpack.painless_lab.enabled: false
|
|
|
|
xpack.ml.ad.enabled: false
|
|
xpack.ml.dfa.enabled: false
|
|
xpack.ml.nlp.enabled: true
|
|
xpack.ml.compatibleModuleType: 'search'
|