fix: creation timestamp of old chart versions to be preserved
This commit is contained in:
parent
f1701eb82e
commit
daf10ca619
1 changed files with 4 additions and 2 deletions
|
@ -150,13 +150,15 @@ upload() {
|
||||||
charts=$(cd ${CHARTS_TMP_DIR} && ls *.tgz | xargs)
|
charts=$(cd ${CHARTS_TMP_DIR} && ls *.tgz | xargs)
|
||||||
|
|
||||||
mkdir -p ${TARGET_DIR}
|
mkdir -p ${TARGET_DIR}
|
||||||
mv -f ${CHARTS_TMP_DIR}/*.tgz ${TARGET_DIR}
|
|
||||||
|
|
||||||
if [[ -f "${TARGET_DIR}/index.yaml" ]]; then
|
if [[ -f "${TARGET_DIR}/index.yaml" ]]; then
|
||||||
echo "Found index, merging changes"
|
echo "Found index, merging changes"
|
||||||
helm repo index ${TARGET_DIR} --url ${CHARTS_URL} --merge "${TARGET_DIR}/index.yaml"
|
helm repo index ${CHARTS_TMP_DIR} --url ${CHARTS_URL} --merge "${TARGET_DIR}/index.yaml"
|
||||||
|
mv -f ${CHARTS_TMP_DIR}/*.tgz ${TARGET_DIR}
|
||||||
|
mv -f ${CHARTS_TMP_DIR}/index.yaml ${TARGET_DIR}/index.yaml
|
||||||
else
|
else
|
||||||
echo "No index found, generating a new one"
|
echo "No index found, generating a new one"
|
||||||
|
mv -f ${CHARTS_TMP_DIR}/*.tgz ${TARGET_DIR}
|
||||||
helm repo index ${TARGET_DIR} --url ${CHARTS_URL}
|
helm repo index ${TARGET_DIR} --url ${CHARTS_URL}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue