Skip to content

Commit

Permalink
Merge pull request #111 from perftool-incubator/dev-kmr
Browse files Browse the repository at this point in the history
complete conversion from ElasticSearch to OpenSearch by updating the …
  • Loading branch information
k-rister authored Feb 8, 2024
2 parents df3fa6b + c48c96d commit 9c03634
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/actions/integration-tests/run-ci-stage1
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ function post_run_cmd {

run_cmd "crucible tags --result-dir /var/lib/crucible/run/latest --action remove --tags testing1 --tags testing2"

# shutdown ES before each run to free up memory for image building
run_cmd "crucible stop es"
# shutdown OpenSearch before each run to free up memory for image building
run_cmd "crucible stop opensearch"
}

function remove_microk8s_images {
Expand Down Expand Up @@ -308,7 +308,7 @@ run_cmd "crucible help"
run_cmd "crucible repo info"

for action in start stop; do
for service in httpd es redis; do
for service in httpd opensearch redis; do
run_cmd "podman ps --all --external"

run_cmd "crucible ${action} ${service}"
Expand Down Expand Up @@ -535,9 +535,9 @@ run_cmd "crucible ls --type run-id"

run_cmd "crucible ls --type tags"

run_cmd "crucible es init"
run_cmd "crucible opensearch init"

run_cmd "crucible es rebuild"
run_cmd "crucible opensearch rebuild"

for scenario in $(echo "${CI_SCENARIOS}" | sed -e "s/,/ /g"); do
if [ "${scenario}" == "multi" ]; then
Expand Down

0 comments on commit 9c03634

Please sign in to comment.