kibana/config
Ying Mao 6a50aaed66
[Serverless] Adding config to disable authentication on task manager background worker utilization API (#159505)
## Summary

Until [this issue](https://github.com/elastic/kibana/issues/153720) is
resolved, this config flag allows us to access the task manager
background worker utilization API in serverless to support autoscaling
of background task deployments

## To Verify

Run es: `yarn es snapshot`
Run serverless on this branch: `yarn serverless-es`

Verify you see the following warning in the logs:
```
[2023-06-12T12:47:19.641-04:00][WARN ][plugins.taskManager] Disabling authentication for background task utilization API
```

and you can access `/api/task_manager/_background_task_utilization`
without logging in
2023-06-12 13:58:25 -04:00
..
kibana.yml [Unified Search] Move autocomplete logic to unified search plugin (#129977) 2022-04-22 11:02:56 +05:00
node.options Bump node to 16.11.1 (#110684) 2021-10-16 16:21:58 -05:00
README.md Fix config stacking order (#158827) 2023-06-05 15:15:07 +02:00
serverless.es.yml [Serverless Search] M0 Navigation (#157994) 2023-05-17 11:40:40 -05:00
serverless.oblt.yml [APM] Add logic to setup default landing page for serverless (#158916) 2023-06-07 17:27:27 +02:00
serverless.security.yml [Security Solution] Endpoint RBAC integration with AppFeatures architecture (#158646) 2023-06-09 03:03:21 -07:00
serverless.yml [Serverless] Adding config to disable authentication on task manager background worker utilization API (#159505) 2023-06-12 13:58:25 -04:00

as work on serverless picks up we will add config values to these files that define how Kibana will run in "serverless" modes. To start Kibana locally with this configuration, pass --serverless={mode} or run yarn serverless-{mode}

valid modes are currently: es, oblt, and security

configuration is applied in the following order, later values override

  1. serverless.yml (serverless configs go first)
  2. serverless.{mode}.yml (serverless configs go first)
  3. base config, in this preference order:
  • my-config.yml(s) (set by --config)
  • env-config.yml (described by env.KBN_CONFIG_PATHS)
  • kibana.yml (default @ env.KBN_PATH_CONF/kibana.yml)
  1. kibana.dev.yml
  2. serverless.dev.yml
  3. serverless.{mode}.dev.yml