2018-03-09 16:00:53 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-05-02 15:11:11 +00:00
|
|
|
push_helm_charts() {
|
2019-02-21 04:30:57 +00:00
|
|
|
PACKAGE=$1
|
|
|
|
CHANGED=0
|
2019-09-26 09:55:12 +00:00
|
|
|
VERSION=${ENV_CSI_IMAGE_VERSION//v} # Set version (without v prefix)
|
2019-02-21 04:30:57 +00:00
|
|
|
|
2019-09-26 09:55:12 +00:00
|
|
|
# Always run when version is canary, when versioned only when the package doesn't exist yet
|
|
|
|
if [ ! -f "tmp/csi-charts/docs/$PACKAGE/ceph-csi-$PACKAGE-$VERSION.tgz" ] && [ -z "$VERSION" ]; then
|
2019-02-21 04:30:57 +00:00
|
|
|
CHANGED=1
|
2019-09-26 09:55:12 +00:00
|
|
|
|
|
|
|
# When version defined it is a release, not a canary build
|
|
|
|
if [ -z "$VERSION" ]; then
|
|
|
|
# Replace appVersion: canary and version: *-canary with the actual version
|
|
|
|
sed -i "s/\(\s.*canary\)/$VERSION/" "charts/ceph-csi-$PACKAGE/Chart.yaml"
|
|
|
|
|
|
|
|
# Replace master with the version branch
|
|
|
|
sed -i "s/tree\/master/tree\/release-v$VERSION/" "charts/ceph-csi-$PACKAGE/Chart.yaml"
|
|
|
|
fi
|
|
|
|
|
|
|
|
ln -s helm charts/ceph-csi-"$PACKAGE"
|
2019-02-21 04:30:57 +00:00
|
|
|
mkdir -p tmp/csi-charts/docs/"$PACKAGE"
|
|
|
|
pushd tmp/csi-charts/docs/"$PACKAGE" >/dev/null
|
|
|
|
helm init --client-only
|
2019-09-26 09:55:12 +00:00
|
|
|
helm package ../../../../charts/ceph-csi-"$PACKAGE"
|
2019-02-21 04:30:57 +00:00
|
|
|
popd >/dev/null
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $CHANGED -eq 1 ]; then
|
|
|
|
pushd tmp/csi-charts/docs >/dev/null
|
|
|
|
helm repo index .
|
|
|
|
git add --all :/ && git commit -m "Update repo"
|
|
|
|
git push https://"$GITHUB_TOKEN"@github.com/ceph/csi-charts
|
|
|
|
popd >/dev/null
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-03-26 06:05:47 +00:00
|
|
|
if [ "${TRAVIS_BRANCH}" == 'csi-v0.3' ]; then
|
2019-05-07 11:25:36 +00:00
|
|
|
export ENV_RBD_IMAGE_VERSION='v0.3-canary'
|
|
|
|
export ENV_CEPHFS_IMAGE_VERSION='v0.3-canary'
|
2019-04-04 04:43:00 +00:00
|
|
|
elif [ "${TRAVIS_BRANCH}" == 'master' ]; then
|
2019-05-24 11:03:33 +00:00
|
|
|
export ENV_CSI_IMAGE_VERSION='canary'
|
2018-12-10 16:06:08 +00:00
|
|
|
else
|
2019-02-07 09:59:10 +00:00
|
|
|
echo "!!! Branch ${TRAVIS_BRANCH} is not a deployable branch; exiting"
|
|
|
|
exit 0 # Exiting 0 so that this isn't marked as failing
|
|
|
|
fi
|
2018-12-10 14:25:17 +00:00
|
|
|
|
2018-12-10 16:06:08 +00:00
|
|
|
if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
|
2019-03-19 17:30:47 +00:00
|
|
|
"${CONTAINER_CMD:-docker}" login -u "${QUAY_IO_USERNAME}" -p "${QUAY_IO_PASSWORD}" quay.io
|
2019-05-24 11:03:33 +00:00
|
|
|
make push-image-cephcsi
|
2019-02-06 18:22:03 +00:00
|
|
|
|
2019-02-06 18:45:33 +00:00
|
|
|
set -xe
|
2019-02-07 09:59:10 +00:00
|
|
|
|
2019-02-06 18:22:03 +00:00
|
|
|
mkdir -p tmp
|
2019-02-07 09:59:10 +00:00
|
|
|
pushd tmp >/dev/null
|
|
|
|
|
|
|
|
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get >get_helm.sh
|
2019-02-06 18:22:03 +00:00
|
|
|
chmod 700 get_helm.sh
|
|
|
|
./get_helm.sh
|
2019-02-07 09:59:10 +00:00
|
|
|
|
2019-02-06 18:22:03 +00:00
|
|
|
git clone https://github.com/ceph/csi-charts
|
2019-02-07 09:59:10 +00:00
|
|
|
|
2019-02-06 18:22:03 +00:00
|
|
|
mkdir -p csi-charts/docs
|
2019-02-07 09:59:10 +00:00
|
|
|
popd >/dev/null
|
2019-02-06 18:22:03 +00:00
|
|
|
|
2019-05-02 15:11:11 +00:00
|
|
|
push_helm_charts rbd
|
|
|
|
push_helm_charts cephfs
|
2019-02-07 09:59:10 +00:00
|
|
|
fi
|