-
Notifications
You must be signed in to change notification settings - Fork 729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Kibana configuration #1030
Conversation
Any YAML here ends up in `kibana.yml`. Example usage: ```yaml apiVersion: kibana.k8s.elastic.co/v1alpha1 kind: Kibana metadata: name: kibana-sample spec: version: "7.1.0" nodeCount: 1 elasticsearchRef: name: "elasticsearch-sample" config: xpack.security.sessionTimeout: 600000 ``` Closes: elastic#740
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Do we want to let the user be able to override what is defined by default? If yes, we need to reverse the config in the merge. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Any YAML here ends up in
kibana.yml
.Example usage:
Closes #740