We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5e1bfe commit d980060Copy full SHA for d980060
build/dockerfiles/entrypoint.sh
@@ -323,9 +323,14 @@ set_truststore_system_variables() {
323
}
324
325
add_che_cert_to_truststore() {
326
+ # Deprecated, CHE_SELF__SIGNED__CERT environment variable is not used after 7.105.0
327
if [ "${CHE_SELF__SIGNED__CERT}" != "" ]; then
328
add_cert_to_truststore "${CHE_SELF__SIGNED__CERT}" "HOSTDOMAIN"
329
fi
330
+ CERT_PATH="/self-signed-cert/ca.crt"
331
+ if [ -e $CERT_PATH ]; then
332
+ add_cert_to_truststore "$(cat $CERT_PATH)" "HOSTDOMAIN"
333
+ fi
334
335
336
add_public_certs_to_truststore() {
0 commit comments