NIFIREG-180 Added db configuration properties to the docker image.

This closes #128.

Signed-off-by: Aldrin Piri <aldrin@apache.org>
This commit is contained in:
Mike 2018-06-29 09:51:10 -04:00 коммит произвёл Aldrin Piri
Родитель 6abbfe1c63
Коммит 59348b5aa7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 531AEBAA4CFE5D00
3 изменённых файлов: 38 добавлений и 0 удалений

Просмотреть файл

@ -123,3 +123,15 @@ volume to provide certificates on the host system to the container instance.
-e LDAP_TLS_TRUSTSTORE: '' -e LDAP_TLS_TRUSTSTORE: ''
-e LDAP_TLS_TRUSTSTORE_PASSWORD: '' -e LDAP_TLS_TRUSTSTORE_PASSWORD: ''
-e LDAP_TLS_TRUSTSTORE_TYPE: '' -e LDAP_TLS_TRUSTSTORE_TYPE: ''
### The following, optional environment variables can be used to configure the database
| nifi-registry.properties entry | Variable |
|----------------------------------------|----------------------------|
| nifi.registry.db.url | NIFI_REGISTRY_DB_URL |
| nifi.registry.db.driver.class | NIFI_REGISTRY_DB_CLASS |
| nifi.registry.db.driver.directory | NIFI_REGISTRY_DB_DIR |
| nifi.registry.db.driver.username | NIFI_REGISTRY_DB_USER |
| nifi.registry.db.driver.password | NIFI_REGISTRY_DB_PASS |
| nifi.registry.db.driver.maxConnections | NIFI_REGISTRY_DB_MAX_CONNS |
| nifi.registry.db.sql.debug | NIFI_REGISTRY_DB_DEBUG_SQL |

Просмотреть файл

@ -23,6 +23,8 @@ scripts_dir='/opt/nifi-registry/scripts'
prop_replace 'nifi.registry.web.http.port' "${NIFI_REGISTRY_WEB_HTTP_PORT:-18080}" prop_replace 'nifi.registry.web.http.port' "${NIFI_REGISTRY_WEB_HTTP_PORT:-18080}"
prop_replace 'nifi.registry.web.http.host' "${NIFI_REGISTRY_WEB_HTTP_HOST:-$HOSTNAME}" prop_replace 'nifi.registry.web.http.host' "${NIFI_REGISTRY_WEB_HTTP_HOST:-$HOSTNAME}"
. ${scripts_dir}/update_database.sh
# Check if we are secured or unsecured # Check if we are secured or unsecured
case ${AUTH} in case ${AUTH} in
tls) tls)

Просмотреть файл

@ -0,0 +1,24 @@
#!/bin/sh -e
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
prop_replace 'nifi.registry.db.url' "${NIFI_REGISTRY_DB_URL:-jdbc:h2:./database/nifi-registry-primary;AUTOCOMMIT=OFF;DB_CLOSE_ON_EXIT=FALSE;LOCK_MODE=3;LOCK_TIMEOUT=25000;WRITE_DELAY=0;AUTO_SERVER=FALSE}"
prop_replace 'nifi.registry.db.driver.class' "${NIFI_REGISTRY_DB_CLASS:-org.h2.Driver}"
prop_replace 'nifi.registry.db.driver.directory' "${NIFI_REGISTRY_DB_DIR:-}"
prop_replace 'nifi.registry.db.driver.username' "${NIFI_REGISTRY_DB_USER:-nifireg}"
prop_replace 'nifi.registry.db.driver.password' "${NIFI_REGISTRY_DB_PASS:-nifireg}"
prop_replace 'nifi.registry.db.driver.maxConnections' "${NIFI_REGISTRY_DB_MAX_CONNS:-5}"
prop_replace 'nifi.registry.db.sql.debug' "${NIFI_REGISTRY_DB_DEBUG_SQL:-false}"