add opensearch addons
This commit is contained in:
98
opensearch-master/config.json
Normal file
98
opensearch-master/config.json
Normal file
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"name": "OpenSearch os-master",
|
||||
"version": "1.0.0",
|
||||
"slug": "opensearch-master",
|
||||
"description": "OpenSearch server (es-compatible) for logs and metrics. Configurable JVM heap, node roles, cluster discovery and volumes.",
|
||||
"arch": [
|
||||
"amd64",
|
||||
"armv7",
|
||||
"arm64"
|
||||
],
|
||||
"startup": "services",
|
||||
"boot": "auto",
|
||||
"host_network": true,
|
||||
"host_pid": false,
|
||||
"map": [
|
||||
[
|
||||
"config",
|
||||
"./config",
|
||||
"rw"
|
||||
],
|
||||
[
|
||||
"data",
|
||||
"/var/lib/opensearch",
|
||||
"rw"
|
||||
]
|
||||
],
|
||||
"options": {
|
||||
"cluster_name": "hass-opensearch-cluster",
|
||||
"node_name": "os-master",
|
||||
"node_roles": [
|
||||
"master"
|
||||
],
|
||||
"discovery_type": "single-node",
|
||||
"discovery_seed_hosts": [],
|
||||
"initial_master_nodes": [],
|
||||
"opensearch_heap": "1.5g",
|
||||
"plugins": [],
|
||||
"bootstrap_memory_lock": false,
|
||||
"http_port": 9200,
|
||||
"transport_port": 9300,
|
||||
"network_host": "0.0.0.0",
|
||||
"path_data": "/var/lib/opensearch",
|
||||
"path_logs": "/var/log/opensearch",
|
||||
"security_enabled": false
|
||||
},
|
||||
"schema": {
|
||||
"cluster_name": "str",
|
||||
"node_name": "str",
|
||||
"node_roles": [
|
||||
"list",
|
||||
[
|
||||
"str"
|
||||
]
|
||||
],
|
||||
"discovery_type": [
|
||||
"str",
|
||||
[
|
||||
"single-node",
|
||||
"zen",
|
||||
"dns",
|
||||
"ec2"
|
||||
]
|
||||
],
|
||||
"discovery_seed_hosts": [
|
||||
"list",
|
||||
[
|
||||
"str"
|
||||
]
|
||||
],
|
||||
"initial_master_nodes": [
|
||||
"list",
|
||||
[
|
||||
"str"
|
||||
]
|
||||
],
|
||||
"opensearch_heap": "str",
|
||||
"plugins": [
|
||||
"list",
|
||||
[
|
||||
"str"
|
||||
]
|
||||
],
|
||||
"bootstrap_memory_lock": "bool",
|
||||
"http_port": "int",
|
||||
"transport_port": "int",
|
||||
"network_host": "str",
|
||||
"path_data": "str",
|
||||
"path_logs": "str",
|
||||
"security_enabled": "bool"
|
||||
},
|
||||
"ports": {
|
||||
"9200/tcp": 9200,
|
||||
"9300/tcp": 9300
|
||||
},
|
||||
"environment": {
|
||||
"OPENSEARCH_JAVA_OPTS": "-Xms${options[opensearch_heap]} -Xmx${options[opensearch_heap]}"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user