23 lines
595 B
Bash
23 lines
595 B
Bash
# OpenSearch version
|
|
OPENSEARCH_VERSION="2.19.0"
|
|
|
|
# OpenSearch Dashboards version
|
|
OPENSEARCH_DASHBOARDS_VERSION="2.19.0"
|
|
|
|
# Cluster configuration
|
|
CLUSTER_NAME="opensearch-cluster"
|
|
|
|
# JVM heap size (should be 50% of container memory)
|
|
OPENSEARCH_HEAP_SIZE="512m"
|
|
|
|
# Admin password (minimum 8 chars with upper, lower, digit, special char)
|
|
OPENSEARCH_ADMIN_PASSWORD="Admin@123"
|
|
|
|
# Security plugin (set to true to disable for testing)
|
|
DISABLE_SECURITY_PLUGIN="false"
|
|
|
|
# Port overrides
|
|
OPENSEARCH_PORT_OVERRIDE=9200
|
|
OPENSEARCH_PERF_ANALYZER_PORT_OVERRIDE=9600
|
|
OPENSEARCH_DASHBOARDS_PORT_OVERRIDE=5601
|