Skip to content

Commit

Permalink
[mod] update to 6.2.4 (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
dohq authored and making committed Apr 26, 2018
1 parent f458f26 commit 2ad41dd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions add-blobs.sh
Expand Up @@ -13,9 +13,9 @@ if [ ! -f ${DIR}/blobs/java/openjdk-1.8.0_162.tar.gz ];then
bosh add-blob --dir=${DIR} openjdk-1.8.0_162.tar.gz java/openjdk-1.8.0_162.tar.gz
fi

if [ ! -f ${DIR}/blobs/elasticsearch/elasticsearch-6.2.3.tar.gz ];then
curl -L -O -J https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.3.tar.gz
bosh add-blob --dir=${DIR} elasticsearch-6.2.3.tar.gz elasticsearch/elasticsearch-6.2.3.tar.gz
if [ ! -f ${DIR}/blobs/elasticsearch/elasticsearch-6.2.4.tar.gz ];then
curl -L -O -J https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.4.tar.gz
bosh add-blob --dir=${DIR} elasticsearch-6.2.4.tar.gz elasticsearch/elasticsearch-6.2.4.tar.gz
fi

cd -
4 changes: 2 additions & 2 deletions ci/pipeline.yml
Expand Up @@ -107,7 +107,7 @@ jobs:
VERSION=`cat ../repo-version/number`
TARBALL=elasticsearch-boshrelease-${VERSION}.tgz
bosh add-blob ../compiled/java/openjdk-1.8.0_162.tar.gz java/openjdk-1.8.0_162.tar.gz
bosh add-blob ../compiled/elasticsearch/elasticsearch-6.2.3.tar.gz elasticsearch/elasticsearch-6.2.3.tar.gz
bosh add-blob ../compiled/elasticsearch/elasticsearch-6.2.4.tar.gz elasticsearch/elasticsearch-6.2.4.tar.gz
bosh create-release --force --version=${VERSION} --final --tarball=../releases/${TARBALL}
SHA1=`sha1sum ../releases/${TARBALL} | awk '{print $1}'`
mkdir -p .sha1
Expand Down Expand Up @@ -229,7 +229,7 @@ tasks:
set -e
cd repo
bosh add-blob ../compiled/java/openjdk-1.8.0_162.tar.gz java/openjdk-1.8.0_162.tar.gz
bosh add-blob ../compiled/elasticsearch/elasticsearch-6.2.3.tar.gz elasticsearch/elasticsearch-6.2.3.tar.gz
bosh add-blob ../compiled/elasticsearch/elasticsearch-6.2.4.tar.gz elasticsearch/elasticsearch-6.2.4.tar.gz
rm -rf .final_builds releases
bosh create-release --name=elasticsearch-dev --force --timestamp-version --tarball=../releases/elasticsearch-boshrelease.tgz
bosh-deploy: &BOSH_DEPLOY
Expand Down
6 changes: 3 additions & 3 deletions config/blobs.yml
@@ -1,6 +1,6 @@
elasticsearch/elasticsearch-6.2.3.tar.gz:
size: 29050159
sha: 5d0e933e764712dd63ba7bec68fb51a656466a1f
elasticsearch/elasticsearch-6.2.4.tar.gz:
size: 29056810
sha: 8db5931278fd7a8687659ebcfaeab0d0f87f7d22
java/openjdk-1.8.0_162.tar.gz:
size: 78245143
sha: 76a74043924dfc1bbb5531b02be014fcd2ef0a6e
2 changes: 1 addition & 1 deletion packages/elasticsearch/packaging
@@ -1,3 +1,3 @@
set -e

tar xzf elasticsearch/elasticsearch-6.2.3.tar.gz -C $BOSH_INSTALL_TARGET --strip-components 1
tar xzf elasticsearch/elasticsearch-6.2.4.tar.gz -C $BOSH_INSTALL_TARGET --strip-components 1
2 changes: 1 addition & 1 deletion packages/elasticsearch/spec
Expand Up @@ -4,4 +4,4 @@ name: elasticsearch
dependencies: []

files:
- elasticsearch/elasticsearch-6.2.3.tar.gz
- elasticsearch/elasticsearch-6.2.4.tar.gz

0 comments on commit 2ad41dd

Please sign in to comment.