Luca Prete | 1b823d6 | 2018-12-13 17:33:47 -0800 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | # Copyright 2018-present Open Networking Foundation |
| 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 | # helmrepo.sh |
| 18 | # creates a helm repo for publishing on guide website |
| 19 | |
| 20 | set -eu -o pipefail |
| 21 | |
| 22 | # when not running under Jenkins, use current dir as workspace |
| 23 | WORKSPACE=${WORKSPACE:-.} |
| 24 | |
| 25 | REPO_DIR="${REPO_DIR:-chart_repo}" |
| 26 | |
| 27 | GERRIT_BRANCH="${GERRIT_BRANCH:-$(git symbolic-ref --short HEAD)}" |
| 28 | PUBLISH_URL="${PUBLISH_URL:-https://charts.opencord.org}" |
| 29 | |
Luca Prete | 94d9519 | 2018-12-14 09:56:00 -0800 | [diff] [blame^] | 30 | ORIGINAL_INDEX_YAML="${ORIGINAL_INDEX_YAML:-/var/www/charts/index.yaml}" |
| 31 | |
Luca Prete | 1b823d6 | 2018-12-13 17:33:47 -0800 | [diff] [blame] | 32 | mkdir -p "${REPO_DIR}" |
| 33 | |
| 34 | while IFS= read -r -d '' chart |
| 35 | do |
| 36 | chartdir=$(dirname "${chart}") |
| 37 | |
| 38 | echo "Adding ${chartdir}" |
| 39 | |
| 40 | helm package --dependency-update --destination "${REPO_DIR}" "${chartdir}" |
| 41 | |
| 42 | done < <(find "${WORKSPACE}" -name Chart.yaml -print0) |
| 43 | |
| 44 | echo "Generating repo index" |
| 45 | |
Luca Prete | 94d9519 | 2018-12-14 09:56:00 -0800 | [diff] [blame^] | 46 | helm repo index "${REPO_DIR}" --url "${PUBLISH_URL}" --merge "${ORIGINAL_INDEX_YAML} |
Luca Prete | 1b823d6 | 2018-12-13 17:33:47 -0800 | [diff] [blame] | 47 | |
| 48 | echo "Finished, chart repo generated: ${REPO_DIR}" |
| 49 | |