chore(kibana): Switch to fleet.outputs schema
The undocumented fields are showcased in the unit tests[0] and schemas[1]. [0]: https://github.com/elastic/kibana/blob/v8.5.0/src/plugins/interactive_setup/server/kibana_config_writer.test.ts#L202 [1]: https://github.com/elastic/kibana/blob/v8.5.0/x-pack/plugins/fleet/common/openapi/components/schemas/output.yaml
This commit is contained in:
parent
1943f25282
commit
74f5610f6d
|
@ -4,7 +4,7 @@
|
||||||
#
|
#
|
||||||
server.name: kibana
|
server.name: kibana
|
||||||
server.host: 0.0.0.0
|
server.host: 0.0.0.0
|
||||||
elasticsearch.hosts: [ 'http://elasticsearch:9200' ]
|
elasticsearch.hosts: [ http://elasticsearch:9200 ]
|
||||||
monitoring.ui.container.elasticsearch.enabled: true
|
monitoring.ui.container.elasticsearch.enabled: true
|
||||||
|
|
||||||
## X-Pack security credentials
|
## X-Pack security credentials
|
||||||
|
@ -15,8 +15,15 @@ elasticsearch.password: ${KIBANA_SYSTEM_PASSWORD}
|
||||||
## Fleet
|
## Fleet
|
||||||
## https://www.elastic.co/guide/en/kibana/current/fleet-settings-kb.html
|
## https://www.elastic.co/guide/en/kibana/current/fleet-settings-kb.html
|
||||||
#
|
#
|
||||||
xpack.fleet.agents.fleet_server.hosts: [ 'http://fleet-server:8220' ]
|
xpack.fleet.agents.fleet_server.hosts: [ http://fleet-server:8220 ]
|
||||||
xpack.fleet.agents.elasticsearch.hosts: [ 'http://elasticsearch:9200' ]
|
|
||||||
|
xpack.fleet.outputs:
|
||||||
|
- id: fleet-default-output
|
||||||
|
name: default
|
||||||
|
type: elasticsearch
|
||||||
|
hosts: [ http://elasticsearch:9200 ]
|
||||||
|
is_default: true
|
||||||
|
is_default_monitoring: true
|
||||||
|
|
||||||
xpack.fleet.packages:
|
xpack.fleet.packages:
|
||||||
- name: fleet_server
|
- name: fleet_server
|
||||||
|
|
Loading…
Reference in New Issue