
* elastic now provides a fully opensource version for their prebuild docker images (elasticsearch, kibana and so on). To avoid running into licensing conflicts for this addon example, we should rather use these images instead of the premium ones (were we also have to disable premium features manually right now) * remove disable flags for xpack, since *-oss images do not include this anymore * bump elasticsearch and kibana version from 5.6.4 to 6.2.4 * use oss version from elastic as baseimg for kibana and elasticsearch * bump fluentd version to ~>1.1.3 * bump gem 'fluent-plugin-elasticsearch' to '~>2.9.1' to allow usage of elasticsearch 6.x * bump fluentd-es-image to v2.1.0 * fix elasticserach run.sh to align with new elasticsearch upstream container structure
30 lines
1.0 KiB
Bash
Executable File
30 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Copyright 2017 The Kubernetes Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set -ex
|
|
|
|
export NODE_NAME=${NODE_NAME:-${HOSTNAME}}
|
|
export NODE_MASTER=${NODE_MASTER:-true}
|
|
export NODE_DATA=${NODE_DATA:-true}
|
|
export HTTP_PORT=${HTTP_PORT:-9200}
|
|
export TRANSPORT_PORT=${TRANSPORT_PORT:-9300}
|
|
export MINIMUM_MASTER_NODES=${MINIMUM_MASTER_NODES:-2}
|
|
|
|
chown -R elasticsearch:elasticsearch /data
|
|
|
|
./bin/elasticsearch_logging_discovery >> ./config/elasticsearch.yml
|
|
exec su elasticsearch -c /usr/local/bin/docker-entrypoint.sh
|