Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

### Changed
- Improved automatic tests for the quickstarters ([#1362](https://github.com/opendevstack/ods-core/pull/1362))
- Update keystore path in import_certs.sh script ([#1365](https://github.com/opendevstack/ods-core/pull/1365))

### Fixed

## [4.11.1] - 2025-12-05
Expand Down
4 changes: 2 additions & 2 deletions ods-provisioning-app/docker/import_certs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -eu
if [[ ! -z ${APP_DNS:=""} ]]; then
echo "Setting up certificates from APP_DNS=${APP_DNS} ..."; \

KEYSTORE="$JAVA_HOME/lib/security/cacerts"
KEYSTORE="/opt/java/openjdk/lib/security/cacerts"

arrIN=(${APP_DNS//;/ })
for val in "${arrIN[@]}";
Expand All @@ -22,4 +22,4 @@ if [[ ! -z ${APP_DNS:=""} ]]; then
echo "Done with certificate setup"
else
echo 'No certificates to import'
fi
fi
Loading