We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cf2271a + 92ef1b7 commit c915564Copy full SHA for c915564
1 file changed
rootfs/bin/get_object
@@ -4,8 +4,9 @@ GET_PATH=slug.tgz
4
5
export BUCKET_FILE=/var/run/secrets/deis/objectstore/creds/builder-bucket
6
if [ "$BUILDER_STORAGE" == "minio" ]; then
7
+ MINIO_BUCKET_NAME=${MINIO_BUCKET:-git}
8
mkdir -p /app/objectstore/minio
- echo "git" > /app/objectstore/minio/builder-bucket
9
+ echo "$MINIO_BUCKET_NAME" > /app/objectstore/minio/builder-bucket
10
export BUCKET_FILE=/app/objectstore/minio/builder-bucket
11
elif [ "$BUILDER_STORAGE" == "azure" ] || [ "$BUILDER_STORAGE" == "swift" ]; then
12
export CONTAINER_FILE=/var/run/secrets/deis/objectstore/creds/builder-container
0 commit comments