Created
January 22, 2020 15:19
-
-
Save yasn77/cb0600bebb9237fbd73d7ca67b4ff211 to your computer and use it in GitHub Desktop.
Script to keep upstream Kong chart in sync with local chart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
LAST_SYNC_COMMIT=$(git log -n1 --grep '^\[upstream-sync\]' --pretty='format:%h' helm/) | |
TMPDIR=$(mktemp -d) | |
UPSTREAM_ZIP_URL=${UPSTREAM_ZIP_URL:-"https://github.com/Kong/charts/archive/master.zip"} | |
KEEP_TMPDIR=${KEEP_TMPDIR:-''} | |
clean_on_exit() { | |
[[ -z "${KEEP_TMPDIR}" ]] && rm -rf ${TMPDIR} | |
} | |
if [ -z "${LAST_SYNC_COMMIT}" ] | |
then | |
echo "Didn't find a commit with [upstream-sync]" | |
exit 1 | |
fi | |
curl -sL -o ${TMPDIR}/master.zip ${UPSTREAM_ZIP_URL} | |
unzip -d ${TMPDIR}/ ${TMPDIR}/master.zip charts-master/charts/kong/* | |
UPSTREAM_VERSION=$(cat ${TMPDIR}/charts-master/charts/kong/Chart.yaml | awk '/^version:/ { print $2 }') | |
cp -a ${TMPDIR}/charts-master/charts/kong/* helm/kong-app/ | |
git add helm/kong-app/ | |
git commit -m "[upstream-sync] Version ${UPSTREAM_VERSION}" | |
git rev-list --no-merges --reverse ${LAST_SYNC_COMMIT}..HEAD~1 -- helm/kong-app/ | git cherry-pick -X theirs -n --stdin | |
git commit -m "Cherry picked commits ${LAST_SYNC_COMMIT}..HEAD~1" | |
trap clean_on_exit EXIT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment