Skip to content

Commit

Permalink
Impove security plugin enabling check (opensearch-project#792)
Browse files Browse the repository at this point in the history
Signed-off-by: Hailong Cui <[email protected]>
Signed-off-by: Aniruddh Srivastava <[email protected]>
  • Loading branch information
Hailong-am authored and Noir01 committed Nov 13, 2023
1 parent cc8b429 commit 3609db0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/security-notifications-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ jobs:
- name: Run Notification Test for security enabled test cases
if: env.imagePresent == 'true'
run: |
cluster_running=`curl -XGET https://localhost:9200/_cat/plugins -u admin:admin --insecure`
echo $cluster_running
security=`curl -XGET https://localhost:9200/_cat/plugins -u admin:admin --insecure |grep opensearch-security|wc -l`
echo $security
container_id=`docker ps -q`
plugins=`docker exec $container_id /usr/share/opensearch/bin/opensearch-plugin list`
echo "plugins: $plugins"
security=`echo $plugins | grep opensearch-security | wc -l`
if [ $security -gt 0 ]
then
echo "Security plugin is available"
Expand All @@ -91,4 +91,4 @@ jobs:
else
echo "Security plugin is NOT available skipping this run as tests without security have already been run"
exit 1
fi
fi

0 comments on commit 3609db0

Please sign in to comment.