Skip to content

Commit

Permalink
fixing order of env parametrs and adding links to lycheeignore
Browse files Browse the repository at this point in the history
Signed-off-by: Tokesh <[email protected]>
  • Loading branch information
Tokesh committed Nov 10, 2024
1 parent 35ab7fe commit 74900fb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
https://localhost:*
http://localhost:*
14 changes: 7 additions & 7 deletions tests/replication/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ services:
opensearch-leader-node1:
image: ${OPENSEARCH_DOCKER_HUB_PROJECT:-opensearchproject}/opensearch:${OPENSEARCH_VERSION:-latest}${OPENSEARCH_DOCKER_REF}
environment:
- DISABLE_INSTALL_DEMO_CONFIG=true
- DISABLE_SECURITY_PLUGIN=true
- OPENSEARCH_INITIAL_ADMIN_PASSWORD=${OPENSEARCH_PASSWORD:-myStrongPassword123!}
- OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m
- bootstrap.memory_lock=true
- cluster.initial_master_nodes=opensearch-leader-node1
- cluster.name=leader-cluster
- discovery.seed_hosts=opensearch-leader-node1
- network.host=0.0.0.0
- node.name=opensearch-leader-node1
- path.repo=/tmp/opensearch/repo
- DISABLE_SECURITY_PLUGIN=true
- DISABLE_INSTALL_DEMO_CONFIG=true
- plugins.index_state_management.job_interval=1
- network.host=0.0.0.0
ulimits:
memlock:
soft: -1
Expand All @@ -30,19 +30,19 @@ services:
opensearch-follower-node1:
image: ${OPENSEARCH_DOCKER_HUB_PROJECT:-opensearchproject}/opensearch:${OPENSEARCH_VERSION:-latest}${OPENSEARCH_DOCKER_REF}
environment:
- DISABLE_INSTALL_DEMO_CONFIG=true
- DISABLE_SECURITY_PLUGIN=true
- OPENSEARCH_INITIAL_ADMIN_PASSWORD=${OPENSEARCH_PASSWORD:-myStrongPassword123!}
- OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m
- bootstrap.memory_lock=true
- cluster.initial_master_nodes=opensearch-follower-node1
- cluster.name=follower-cluster
- cluster.remote.leader-cluster.seeds=172.22.0.3:9300
- discovery.seed_hosts=opensearch-follower-node1
- network.host=0.0.0.0
- node.name=opensearch-follower-node1
- path.repo=/tmp/opensearch/repo
- DISABLE_SECURITY_PLUGIN=true
- DISABLE_INSTALL_DEMO_CONFIG=true
- plugins.index_state_management.job_interval=1
- network.host=0.0.0.0
- cluster.remote.leader-cluster.seeds=172.22.0.3:9300
ulimits:
memlock:
soft: -1
Expand Down

0 comments on commit 74900fb

Please sign in to comment.