Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert release script #177

Merged
merged 1 commit into from
Feb 6, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,43 +3,4 @@
if [ "${TRAVIS_BRANCH}" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
docker login -u "${QUAY_IO_USERNAME}" -p "${QUAY_IO_PASSWORD}" quay.io
make push-image-rbdplugin push-image-cephfsplugin

set -e

mkdir -p tmp
pushd tmp > /dev/null

curl https://raw.githubusercontent.com/helm/helm/master/scripts/get > get_helm.sh
chmod 700 get_helm.sh
./get_helm.sh

git clone https://github.com/ceph/csi-charts
git clone https://github.com/ceph/ceph-csi

mkdir -p csi-charts/docs
pushd ceph-csi > /dev/null
git checkout -b csi-v1.0

CHANGED=0
VERSION=$(cat deploy/rbd/helm/Chart.yaml | awk '{if(/^version:/){print $2}}')

if [ ! -f "../csi-charts/docs/rbd/ceph-csi-rbd-$VERSION.tgz" ]; then
CHANGED=1
ln -s deploy/rbd/helm/ deploy/rbd/ceph-csi-rbd
mkdir -p ../csi-charts/docs/rbd
pushd ../csi-charts/docs/rbd > /dev/null
helm package ../ceph-csi/deploy/rbd/ceph-csi-rbd
popd > /dev/null
fi
popd > /dev/null

if [ $CHANGED -eq 1 ]; then
pushd 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

popd > /dev/null
fi