Skip to content

Commit

Permalink
test(smoketest): do not require truststore directory
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Apr 23, 2024
1 parent 7b2e540 commit 25a6140
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion smoketest.bash
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ fi
createJmxTlsCertVolume() {
"${container_engine}" volume create jmxtls_cfg
"${container_engine}" container create --name jmxtls_cfg_helper -v jmxtls_cfg:/truststore busybox
"${container_engine}" cp "${DIR}/truststore" jmxtls_cfg_helper:/truststore
if [ -d "${DIR}/truststore" ]; then
"${container_engine}" cp "${DIR}/truststore" jmxtls_cfg_helper:/truststore
fi
}
createJmxTlsCertVolume

Expand Down

0 comments on commit 25a6140

Please sign in to comment.