Configuring ES coordinating only nodes in Kubernetes

Hi

I want to create coordinating only nodes on my ES cluster.

How do I configure client only nodes? For example, in my data nodes, I do this:

      config:
        node.master: false
        node.data: true
        node.ingest: true
        node.store.allow_mmap: false

I tried doing the following:

      config:
        node.master: false
        node.data: false
        node.ingest: false
        node.store.allow_mmap: false

When I look at my node, it only has an "l" setting. Shouldn't it be a "-"?

Am I missing something?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.