5.5.2-r0 release

Update elasticsearch to 5.5.2.
This commit is contained in:
Bitnami Bot
2017-08-18 15:27:32 +00:00
parent d4d3dc9d81
commit 10ca8933a5
4 changed files with 21 additions and 9 deletions

View File

@@ -1,20 +1,21 @@
FROM bitnami/minideb-extras:jessie-r20
FROM bitnami/minideb-extras:jessie-r21
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages libc6 libffi6 libgcc1 libglib2.0-0 liblzma5 libpcre3 libselinux1 libstdc++6 libx11-6 libxau6 libxcb1 libxdmcp6 libxext6 libxml2 zlib1g
RUN bitnami-pkg install java-1.8.141-0 --checksum 5e3e833f2899154285a7feb3d1511f26493f6091774ea90698c71866629991ff
RUN bitnami-pkg unpack elasticsearch-5.5.1-0 --checksum ab15c1a393e2be8c09ea857ad579c6709aa19b48c60ec256ecf317463a3b9d5b
RUN bitnami-pkg install java-1.8.144-0 --checksum 8b4315727f65780d8223df0aeaf5e3beca10a14aa4e2cdd1f3541ab50b346433
RUN bitnami-pkg unpack elasticsearch-5.5.2-0 --checksum f243dfd6ed2f9d166d8bb3b1b6cb417ff3e1f696fc3f9a61c07a95b46424b07d
COPY rootfs /
ENV BITNAMI_APP_NAME="elasticsearch" \
BITNAMI_IMAGE_VERSION="5.5.1-r0" \
BITNAMI_IMAGE_VERSION="5.5.2-r0" \
ELASTICSEARCH_CLIENT_NODE="" \
ELASTICSEARCH_CLUSTER_HOSTS="" \
ELASTICSEARCH_CLUSTER_NAME="elasticsearch-cluster" \
ELASTICSEARCH_NODE_NAME="" \
ELASTICSEARCH_NODE_PORT_NUMBER="9300" \
ELASTICSEARCH_PLUGINS="" \
ELASTICSEARCH_PORT_NUMBER="9200" \
ELASTICSEARCH_REMOTE_CONNECTION="true" \
PATH="/opt/bitnami/java/bin:/opt/bitnami/elasticsearch/bin:$PATH"

View File

@@ -5,5 +5,6 @@
"isClientNode": "{{$global.env.ELASTICSEARCH_CLIENT_NODE}}",
"nodeName": "{{$global.env.ELASTICSEARCH_NODE_NAME}}",
"nodePort": "{{$global.env.ELASTICSEARCH_NODE_PORT_NUMBER}}",
"plugins": "{{$global.env.ELASTICSEARCH_PLUGINS}}",
"port": "{{$global.env.ELASTICSEARCH_PORT_NUMBER}}"
}

View File

@@ -180,6 +180,7 @@ elasticsearch:
Available variables:
- `ELASTICSEARCH_PLUGINS`: Comma, semi-colon or space separated list of plugins to install at initialization. No defaults
- `ELASTICSEARCH_PORT_NUMBER`: Elasticsearch port. Default: **9200**
- `ELASTICSEARCH_NODE_PORT_NUMBER`: Elasticsearch Node to Node port. Default: **9300**
- `ELASTICSEARCH_CLUSTER_NAME`: The Elasticsearch Cluster Name. Default: **elasticsearch-cluster**

View File

@@ -16,6 +16,10 @@ jobs:
- checkout
- setup_remote_docker:
version: 17.06.0-ce
- run:
name: Upgrade system packages (workaround - https://github.com/docker-library/docker/issues/72)
command: |
apk upgrade --no-cache
- run:
name: Install dependencies
command: |
@@ -47,8 +51,13 @@ jobs:
curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-development-image.sh | bash -
fi
deployment:
release:
tag: /^[0-9].*-r[0-9]+$/
commands:
- echo "workaround make tags run in 2.0 - https://discuss.circleci.com/t/git-tag-deploys-in-2-0/9493/8"
workflows:
version: 2
build-and-deploy:
jobs:
- build:
filters:
branches:
only: /.*/
tags:
only: /^[0-9].*-r[0-9]+$/