17 lines
413 B
Plaintext
17 lines
413 B
Plaintext
cluster.name: ${CLUSTER_NAME}
|
|
node.name: ${NODE_NAME}
|
|
node.roles: [${NODE_ROLE}]
|
|
|
|
path.data: /usr/share/opensearch/data
|
|
path.logs: /usr/share/opensearch/logs
|
|
|
|
network.host: 0.0.0.0
|
|
http.port: ${HTTP_PORT}
|
|
transport.port: ${TRANSPORT_PORT}
|
|
|
|
discovery.seed_hosts: [${DISCOVERY_SEEDS}]
|
|
cluster.initial_master_nodes: [${INITIAL_MASTERS}]
|
|
|
|
plugins.security.disabled: ${SECURITY_ENABLED}
|
|
|
|
action.auto_create_index: true |