54 строки
2.3 KiB
Bash
54 строки
2.3 KiB
Bash
#!/usr/bin/env bash
|
|
# 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.
|
|
# Script to check licences for all code. Can be started from any working directory
|
|
# shellcheck source=scripts/in_container/_in_container_script_init.sh
|
|
. "$( dirname "${BASH_SOURCE[0]}" )/_in_container_script_init.sh"
|
|
|
|
export FILES_DIR="/files"
|
|
export AIRFLOW_BREEZE_CONFIG_DIR="${FILES_DIR}/airflow-breeze-config"
|
|
VARIABLES_ENV_FILE="variables.env"
|
|
|
|
if [[ -d "${FILES_DIR}" ]]; then
|
|
export AIRFLOW__CORE__DAGS_FOLDER="/files/dags"
|
|
mkdir -pv "${AIRFLOW__CORE__DAGS_FOLDER}"
|
|
sudo chown "${HOST_USER_ID}":"${HOST_GROUP_ID}" "${AIRFLOW__CORE__DAGS_FOLDER}"
|
|
echo "Your dags for webserver and scheduler are read from ${AIRFLOW__CORE__DAGS_FOLDER} directory"
|
|
echo "which is mounted from your <AIRFLOW_SOURCES>/files/dags folder"
|
|
echo
|
|
else
|
|
export AIRFLOW__CORE__DAGS_FOLDER="${AIRFLOW_HOME}/dags"
|
|
echo "Your dags for webserver and scheduler are read from ${AIRFLOW__CORE__DAGS_FOLDER} directory"
|
|
fi
|
|
|
|
|
|
if [[ -d "${AIRFLOW_BREEZE_CONFIG_DIR}" && \
|
|
-f "${AIRFLOW_BREEZE_CONFIG_DIR}/${VARIABLES_ENV_FILE}" ]]; then
|
|
pushd "${AIRFLOW_BREEZE_CONFIG_DIR}" >/dev/null 2>&1 || exit 1
|
|
echo
|
|
echo "Sourcing environment variables from ${VARIABLES_ENV_FILE} in ${AIRFLOW_BREEZE_CONFIG_DIR}"
|
|
echo
|
|
# shellcheck disable=1090
|
|
source "${VARIABLES_ENV_FILE}"
|
|
popd >/dev/null 2>&1 || exit 1
|
|
else
|
|
echo
|
|
echo "You can add ${AIRFLOW_BREEZE_CONFIG_DIR} directory and place ${VARIABLES_ENV_FILE}"
|
|
echo "In it to make breeze source the variables automatically for you"
|
|
echo
|
|
fi
|