You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log_warning "Missing configuration for datasource $prefix. ${service}_SERVICE_HOST, ${service}_SERVICE_PORT, and/or ${prefix}_DATABASE is missing. Datasource will not be configured."
898
+
log_warning "Missing configuration for datasource $prefix. ${service}_SERVICE_HOST, ${service}_SERVICE_PORT, and/or ${prefix}_DATABASE is missing."
899
+
log_warning "Datasource '$(basename ${jndi_name})' will not be configured."
814
900
eval${invalidVar}="true"
815
901
else
816
-
log_warning "Missing configuration for XA datasource $prefix. Either ${prefix}_XA_CONNECTION_PROPERTY_URL or $serverNameVar, and $portVar, and $databaseNameVar is required. Datasource will not be configured."
902
+
log_warning "Missing configuration for XA datasource $prefix. Either ${prefix}_XA_CONNECTION_PROPERTY_URL or $serverNameVar, and $portVar, and $databaseNameVar is required."
903
+
log_warning "Datasource '$(basename ${jndi_name})' will not be configured."
817
904
eval${invalidVar}="true"
818
905
fi
819
906
else
@@ -823,7 +910,8 @@ function map_properties() {
823
910
fi
824
911
fi
825
912
else
826
-
log_warning "Missing configuration for datasource $prefix. ${service}_SERVICE_HOST, ${service}_SERVICE_PORT, and/or ${prefix}_DATABASE is missing. Datasource will not be configured."
913
+
log_warning "Missing configuration for datasource $prefix. ${service}_SERVICE_HOST, ${service}_SERVICE_PORT, and/or ${prefix}_DATABASE is missing."
914
+
log_warning "Datasource '$(basename ${jndi_name})' will not be configured."
827
915
eval${invalidVar}="true"
828
916
fi
829
917
@@ -950,7 +1038,8 @@ function inject_datasource() {
950
1038
fi
951
1039
952
1040
if [ -z"$driver" ];then
953
-
log_warning "DRIVER not set for datasource ${service_name}. Datasource will not be configured."
1041
+
log_warning "DRIVER not set for datasource ${service_name}."
1042
+
log_warning "Datasource '$(basename ${jndi_name})' will not be configured."
# SSL/TLS support for PostgreSQL SQL database server container image
2
+
3
+
The [PostgreSQL 10 SQL database server](https://catalog.redhat.com/software/containers/rhscl/postgresql-10-rhel7/5aa63541ac3db95f196086f1)
4
+
doesn't support SSL/TLS encryption by default. In order to enable the
5
+
SSL/TLS encryption, the PostgreSQL server container image needs to be
6
+
extended using the [source-to-image](https://github.com/openshift/source-to-image)
7
+
method. Refer to [_*Extending image*_](https://catalog.redhat.com/software/containers/rhscl/postgresql-10-rhel7/5aa63541ac3db95f196086f1)
8
+
and primarily to [the available example](https://github.com/sclorg/postgresql-container/tree/master/examples/enable-ssl)
9
+
for additional details.
10
+
11
+
This (sub)directory contains all the information needed to enable SSL/TLS
12
+
support for the [PostgreSQL 10 SQL database server](https://catalog.redhat.com/software/containers/rhscl/postgresql-10-rhel7/5aa63541ac3db95f196086f1)
13
+
used in the available PostgreSQL [templates](https://github.com/jboss-container-images/redhat-sso-7-openshift-image/tree/sso75-dev/templates)
14
+
for [Red Hat Single Sign-On 7.5 for OpenJDK / OpenJ9 on OpenShift container images](https://github.com/jboss-container-images/redhat-sso-7-openshift-image/tree/sso75-dev).
0 commit comments