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
|
|
|
|
VERSION=$(grep 'version:' deploy/"$PACKAGE"/helm/Chart.yaml | awk '{print $2}')
|
|
|
|
|
|
|
|
if [ ! -f "tmp/csi-charts/docs/$PACKAGE/ceph-csi-$PACKAGE-$VERSION.tgz" ]; then
|
|
|
|
CHANGED=1
|
|
|
|
ln -s helm deploy/"$PACKAGE"/ceph-csi-"$PACKAGE"
|
|
|
|
mkdir -p tmp/csi-charts/docs/"$PACKAGE"
|
|
|
|
pushd tmp/csi-charts/docs/"$PACKAGE" >/dev/null
|
|
|
|
helm init --client-only
|
|
|
|
helm package ../../../../deploy/"$PACKAGE"/ceph-csi-"$PACKAGE"
|
|
|
|
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
|