mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-08 15:30:21 +00:00
2d560ba087
currently, we have 3 docker files(cephcsi,rbd,cephfs) in the ceph-csi repo.
[commit ](85e121ebfe
)
added by John to build a single image which can act as rbd or
cephfs based on the input configuration.
This PR updates the makefile and kubernetes templates to use
the unified image and also its deletes the other two dockerfiles.
Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
58 lines
1.5 KiB
Bash
Executable File
58 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
push_helm_charts() {
|
|
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
|
|
}
|
|
|
|
if [ "${TRAVIS_BRANCH}" == 'csi-v0.3' ]; then
|
|
export ENV_RBD_IMAGE_VERSION='v0.3-canary'
|
|
export ENV_CEPHFS_IMAGE_VERSION='v0.3-canary'
|
|
elif [ "${TRAVIS_BRANCH}" == 'master' ]; then
|
|
export ENV_CSI_IMAGE_VERSION='canary'
|
|
else
|
|
echo "!!! Branch ${TRAVIS_BRANCH} is not a deployable branch; exiting"
|
|
exit 0 # Exiting 0 so that this isn't marked as failing
|
|
fi
|
|
|
|
if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
|
|
"${CONTAINER_CMD:-docker}" login -u "${QUAY_IO_USERNAME}" -p "${QUAY_IO_PASSWORD}" quay.io
|
|
make push-image-cephcsi
|
|
|
|
set -xe
|
|
|
|
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
|
|
|
|
mkdir -p csi-charts/docs
|
|
popd >/dev/null
|
|
|
|
push_helm_charts rbd
|
|
push_helm_charts cephfs
|
|
fi
|