- Elastic Cloud on Kubernetes:
- Overview
- Quickstart
- Upgrading the Elastic Stack version
- Deploying ECK on OpenShift
- Accessing Elastic Stack services
- Managing compute resources
- Running Elasticsearch on ECK
- Pod Template
- JVM heap size
- Node configuration
- Volume claim templates
- HTTP settings & TLS SANs
- Virtual memory
- Custom HTTP certificate
- Settings managed by ECK
- Secure settings
- Custom configuration files and plugins
- Init containers for plugin downloads
- Update strategy
- Pod disruption budget
- Nodes orchestration
- Advanced Elasticsearch node scheduling
- Create automated snapshots
- Readiness probe
- Pod PreStop hook
- Running Kibana on ECK
- Running APM Server on ECK
- Creating custom images
- Configuring ECK
- Service meshes
- Managing licenses in ECK
- Troubleshooting
- Upgrading ECK
- Uninstalling ECK
- Glossary
- API Reference
- Release highlights
- Release notes
A newer version is available. For the latest information, see the
current release documentation.
Node configuration
editNode configuration
editAny setting defined in the elasticsearch.yml
configuration file can also be defined for a set of Elasticsearch nodes in the spec.nodeSets[?].config
section.
spec: nodeSets: - name: masters count: 3 config: node.master: true node.data: false node.ingest: false node.ml: false xpack.ml.enabled: true cluster.remote.connect: false - name: data count: 10 config: node.master: false node.data: true node.ingest: true node.ml: true cluster.remote.connect: false
For more information on Elasticsearch settings, see Configuring Elasticsearch.
Was this helpful?
Thank you for your feedback.