-
Notifications
You must be signed in to change notification settings - Fork 719
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
Issues with users other than default "elastic" #2036
Labels
>bug
Something isn't working
Comments
Thanks for reporting this. It looks like the native realm has been disabled due to the operator enabling the file realm by default. You can update your cluster to enable the native realm by running the following: cat <<EOF | kubectl apply -f -
apiVersion: elasticsearch.k8s.elastic.co/v1beta1
kind: Elasticsearch
metadata:
name: quickstart
spec:
version: 7.4.0
nodeSets:
- name: default
count: 1
config:
node.master: true
node.data: true
node.ingest: true
node.store.allow_mmap: false
xpack.security.authc.realms:
native:
native1:
order: 1
EOF I have raised #2037 to investigate this further for a future release. |
Awesome, thanks for the work around @charith-elastic |
Yes, Thanks for the workaround, been staring at this for hours. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug Report
What did you do?
Followed quickstart guide, additionally created a superuser via the ui
What did you expect to see?
Built-in users, newly created users functioning
What did you see instead? Under which circumstances?
Users UI only shows
No items found
, GET _security/user returns{ }
Attempting to log into kibana as superuser returns
Invalid username or password. Please try again.
After creating user via UI, GET _security/user returns:
Also unable to curl with the new user:
Environment
eck-operator:1.0.0-beta1
On premise - Rancher 2.3.1
The text was updated successfully, but these errors were encountered: