Hello World!
I'm trying out eck'quickstart:
and even though I'm logging in as elastic user, which is superadmin, I get the following message when I try to access Kibana'Monitoring app:
Access Denied
You are not authorized to access Monitoring. To use Monitoring, you need the privileges granted by both thekibana_adminandmonitoring_userroles.
If you are attempting to access a dedicated monitoring cluster, this might be because you are logged in as a user that is not configured on the monitoring cluster.
Since Cross Cluster Search is enabled (monitoring.ui.ccs.enabledis set totrue), make sure your cluster has theremote_cluster_clientrole on at least one node.
apiVersion: elasticsearch.k8s.elastic.co/v1
kind: Elasticsearch
metadata:
  name: dd
spec:
  version: 8.10.4
  nodeSets:
  - name: default
    config:
attr_value
      node.roles: ["master", "data", "ingest", "ml"]
performance cost
      node.store.allow_mmap: false
      monitoring.ui.ccs.enabled: false
as soon as I add
monitoring.ui.ccs.enabled: false
elasticsearch won't even start anymore(
Please advise)
Thank you!
