This commit is contained in:
ai-dev
2025-09-22 00:35:01 +02:00
parent 93ecdb789e
commit 06bd452488
3 changed files with 125 additions and 182 deletions

View File

@@ -1,13 +1,14 @@
{
"name": "OpenSearch Cluster Node",
"name": "OpenSearch Master",
"version": "1.0.0",
"slug": "opensearch-node",
"description": "OpenSearch cluster node with configurable roles",
"arch": ["amd64", "armv7", "aarch64"],
"slug": "opensearch-master",
"description": "OpenSearch master node for Home Assistant",
"arch": ["amd64", "aarch64", "armv7"],
"startup": "services",
"boot": "auto",
"host_network": true,
"init": false,
"privileged": ["SYS_ADMIN"],
"map": [
["config", "/usr/share/opensearch/config", "rw"],
["data", "/usr/share/opensearch/data", "rw"],
@@ -22,7 +23,7 @@
"transport_port": 9300,
"discovery_seed_hosts": ["os-master:9300"],
"initial_master_nodes": ["os-master"],
"security_enabled": true,
"security_enabled": false,
"admin_password": "SecurePass123!",
"plugins": []
},
@@ -42,5 +43,8 @@
"ports": {
"9200/tcp": 9200,
"9300/tcp": 9300
},
"environment": {
"OPENSEARCH_HEAP_SIZE": "2g"
}
}