I would like to enable "Continue as Guest" on Kibana and have followed the elastic docs but it did not work.
My setup is a Kibana container running on Kubernetes that connects to a backend Elasticsearch. Kibana can start and run without errors. I am also able to log in with a valid user. However, the "Continue as Guest" anonymous access button just does not appear.
My Kibana configmap is as follows:
apiVersion: v1
kind: ConfigMap
data:
kibana.yml: |
server.basePath: "/kibana"
server.rewriteBasePath: "true"
server.publicBaseUrl: "https://abc/kibana"
elasticsearch.hosts: "http://xyz:9200"
xpack.security.authc.providers:
basic.basic1:
order: 0
anonymous.anonymous1:
order: 1
credentials:
username: "user"
password: "password"
What other config is missing or incorrect?