#! /usr/bin/env bash # COPYRIGHT NOTICE STARTS HERE # # Copyright 2019 © Samsung Electronics Co., Ltd. # # Licensed 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. # # COPYRIGHT NOTICE ENDS HERE ### This script is preparing docker images list based on kubernetes project ### NOTE: helm needs to be installed and working, it is required for correct processing ### of helm charts in oom directory # Fail fast settings set -e usage () { echo " " echo " This script is preparing docker images list based on kubernetes project" echo " Usage:" echo " ./$(basename $0) []" echo " " echo " Example: ./$(basename $0) onap_3.0.2 /root/oom/kubernetes/onap" echo " " echo " Dependencies: helm, python-yaml, make" echo " " exit 1 } parse_yaml() { python - < /dev/null; then echo "helm is already running" else helm init -c > /dev/null helm serve & fi # Create helm repository if ! helm repo list 2>&1 | awk '{ print $1, $2 }' | grep -q "$HELM_REPO" > /dev/null; then helm repo add "$HELM_REPO" fi # Make all pushd "${PROJECT_DIR}/.." echo "Building project..." make all > /dev/null; make ${PROJECT} > /dev/null popd # Create the list from all enabled subsystems echo "Creating the list..." if [ "${PROJECT}" == "onap" ]; then for subsystem in `parse_yaml "${PROJECT_DIR}/values.yaml"`; do create_list ${subsystem} done else create_list ${PROJECT} fi | sort -u > ${LIST} echo -e ${MSG} echo -e 'The list has been created:\n '"${LIST}" exit 0