Skip to content

Commit

Permalink
Remove reference to default credentials
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Ho <[email protected]>
  • Loading branch information
derek-ho committed Dec 18, 2023
1 parent fe55e00 commit 64f17af
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/actions/opensearch/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ do
--env "ES_JAVA_OPTS=-Xms1g -Xmx1g" \
--env "http.port=${port}" \
--env "action.destructive_requires_name=false" \
--env "OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123!" \
--env "plugins.security.disabled=${DISABLE_SECURITY}" \
--ulimit nofile=65536:65536 \
--ulimit memlock=-1:-1 \
Expand Down Expand Up @@ -66,7 +67,7 @@ else
--show-error \
--silent \
--insecure \
https://admin:admin@os1:$PORT
https://admin:myStrongPassword123!@os1:$PORT
fi

sleep 10
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

test-opensearch-security:
env:
TEST_OPENSEARCH_SERVER: https://admin:admin@localhost:9200
TEST_OPENSEARCH_SERVER: https://admin:myStrongPassword123!@localhost:9200
PORT: 9200
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

test-opensearch-security:
env:
TEST_OPENSEARCH_SERVER: https://admin:admin@localhost:9200
TEST_OPENSEARCH_SERVER: https://admin:myStrongPassword123!@localhost:9200
PORT: 9200
strategy:
fail-fast: false
Expand Down

0 comments on commit 64f17af

Please sign in to comment.