Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 1 | # COPYRIGHT NOTICE STARTS HERE |
| 2 | # |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 3 | # Copyright 2018 © Samsung Electronics Co., Ltd. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | # COPYRIGHT NOTICE ENDS HERE |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 18 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 19 | if [[ -z "$LISTS_DIR" ]]; then |
| 20 | LISTS_DIR=. |
| 21 | echo "Using default output directory ." |
| 22 | fi |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 23 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 24 | OOM_PATH="$1" |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 25 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 26 | if [[ -z "$OOM_PATH" ]]; then |
| 27 | echo "Missing oom path" |
| 28 | exit 1 |
| 29 | fi |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 30 | |
| 31 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 32 | GOUTPUT="$LISTS_DIR/git_repos_list" |
| 33 | FOUTPUT="$LISTS_DIR/fetch_list.txt" |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 34 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 35 | trim_last() { |
| 36 | echo "${@:1:$#-1}"; |
| 37 | } |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 38 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 39 | TMP='/tmp/git_tmp_list' |
| 40 | :> $TMP |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 41 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 42 | :> $FOUTPUT |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 43 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 44 | echo "Gathering git repos and list possible html data" |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 45 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 46 | while read -r chart; do |
| 47 | out="$(helm template $(dirname "$chart") 2>/dev/null)" |
| 48 | gitcmds=$(echo "$out" | grep 'git clone') |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 49 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 50 | if [[ -n "$gitcmds" ]] ; then |
| 51 | while read gitcmd; do |
| 52 | gitcmd=$(trim_last $gitcmd) |
| 53 | repo_path=$(echo "$gitcmd" | sed 's#.*http://\(.*\)$#\1#') |
| 54 | full="$gitcmd --bare $repo_path" |
| 55 | echo "Cmd: $full" |
| 56 | echo "$full" >> $TMP |
| 57 | done <<< "$gitcmds" |
| 58 | fi |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 59 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 60 | fetchcmds=$(echo "$out" | grep 'wget \|curl ' | grep -v 'HEALTH_CHECK_ENDPOINT\|PUT\|POST' ) |
| 61 | if [[ -n "$fetchcmds" ]] ; then |
| 62 | while read fetchcmd; do |
| 63 | echo "Fetch: $fetchcmd" |
| 64 | echo "=== From: $chart" >> $FOUTPUT |
| 65 | echo "$fetchcmd" >> $FOUTPUT |
| 66 | done <<< "$fetchcmds" |
| 67 | fi |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 68 | |
| 69 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 70 | done <<< "$(find $OOM_PATH -name Chart.yaml)" |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 71 | |
Piotr Perzanowski | 613787d | 2018-12-18 16:45:11 +0100 | [diff] [blame] | 72 | sort $TMP | uniq > $GOUTPUT |
Petr Ospalý | 03e6124 | 2019-01-03 16:54:50 +0100 | [diff] [blame] | 73 | |
| 74 | |