-
Notifications
You must be signed in to change notification settings - Fork 726
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
Breaking update v2.16.0 #8378
Comments
A possible workaround that we are currently considering to add through the operator directly in #8380 by default is an additional apiVersion: kibana.k8s.elastic.co/v1
kind: Kibana
metadata:
name: kibana
spec:
config:
xpack.security.audit.enabled: true
version: 8.16.0
count: 1
elasticsearchRef:
name: elasticsearch
podTemplate:
spec:
containers:
- name: kibana
volumeMounts:
- name: kibana-logs
mountPath: /usr/share/kibana/logs
volumes:
- name: kibana-logs
emptyDir: {} There is a trade-off with this approach in that |
Hello team, Testing the suggested manifest I suspect the Here's the snippet we've tested in lab: apiVersion: kibana.k8s.elastic.co/v1
kind: Kibana
metadata:
name: eck-lab
spec:
config:
xpack.security.audit.enabled: true
version: 8.17.0
count: 1
elasticsearchRef:
name: "eck-lab"
http:
service:
spec:
type: LoadBalancer
podTemplate:
spec:
containers:
- name: kibana
volumeMounts:
- name: kibana-logs
mountPath: /usr/share/kibana/logs
volumes:
- name: kibana-logs
emptyDir: {}
metadata:
labels:
scrape: kb |
Good catch. My mistake. Will update the example. |
Updating to version 2.16.0 breaks our deployment.
We currently run Elasticsearch and Kibana version 8.17.0, and seems like the new Kibana default security context is not compatible with
xpack.security.audit.enabled: true
.This is what we see from Kibana logs:
After setting the
xpack.security.audit.enabled: false
the problem is gone and the update is possible, but that's definitely not what we want.I haven't tested, but maybe set
xpack.security.audit.appender.type: console
would solve the problem, even if I don't know what could be the consequences.Do you have any other idea on how to manage it?
The text was updated successfully, but these errors were encountered: