Skip to content
This repository was archived by the owner on Nov 7, 2018. It is now read-only.

Commit 839feab

Browse files
committed
Configuration is now powered by environment variables.
Upgraded to Kubernetes discovery plug-in 1.3.0. Fixes #1
1 parent 7d3fa57 commit 839feab

File tree

5 files changed

+47
-16
lines changed

5 files changed

+47
-16
lines changed

Dockerfile

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
FROM quay.io/pires/docker-elasticsearch:1.7.1
1+
FROM quay.io/pires/docker-elasticsearch:1.7.1-2
22

33
44

55
# Override elasticsearch.yml config, otherwise plug-in install will fail
6-
ADD elasticsearch.yml /elasticsearch/config/elasticsearch.yml
6+
ADD do_not_use.yml /elasticsearch/config/elasticsearch.yml
77

88
# Install Elasticsearch plug-ins
9-
RUN /elasticsearch/bin/plugin -i io.fabric8/elasticsearch-cloud-kubernetes/1.2.1 --verbose
9+
RUN /elasticsearch/bin/plugin -i io.fabric8/elasticsearch-cloud-kubernetes/1.3.0 --verbose
10+
11+
# Override elasticsearch.yml config, otherwise plug-in install will fail
12+
ADD elasticsearch.yml /elasticsearch/config/elasticsearch.yml

README.md

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,19 @@
11
# docker-elasticsearch-kubernetes
2-
Ready to use Elasticsearch + Kubernetes discovery plug-in Docker image.
2+
3+
Ready to use lean (210MB) Elasticsearch Docker image ready for using within a Kubernetes cluster.
34

45
[![Docker Repository on Quay.io](https://quay.io/repository/pires/docker-elasticsearch-kubernetes/status "Docker Repository on Quay.io")](https://quay.io/repository/pires/docker-elasticsearch-kubernetes)
56

67
## Current software
78

89
* Oracle JRE 8 Update 51
910
* Elasticsearch 1.7.1
10-
* Kubernetes plug-in 1.2.1
11+
* Kubernetes plug-in 1.3.0
1112

1213
## Pre-requisites
1314

14-
* Docker 1.5.0+
15+
* Docker 1.7.0+
1516

1617
## Run
1718

18-
You need a folder named `config` with your own version of `elasticsearch.yml`. You can add other Elasticserach configuration files to this folder, such as `logging.yml`.
19-
20-
```
21-
docker run --rm -v /path/to/config:/elasticsearch/config quay.io/pires/docker-elasticsearch-kubernetes:1.7.1
22-
```
23-
24-
In case you want to specify a data folder so that Elasticsearch writes to storage outside the container, run
25-
```
26-
docker run --rm -v /path/to/config:/elasticsearch/config -v /path/to/data_folder:/data quay.io/pires/docker-elasticsearch-kubernetes:1.7.1
27-
```
19+
See [pires/kubernetes-elasticsearch-cluster](https://github.com/pires/kubernetes-elasticsearch-cluster) for instructions on how to run, scale and use Elasticsearch on Kubernetes.

do_not_use.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
path:
2+
plugins: /elasticsearch/plugins

elasticsearch.yml

+22
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,24 @@
1+
cluster:
2+
name: ${CLUSTER_NAME}
3+
4+
node:
5+
master: ${NODE_MASTER}
6+
data: ${NODE_DATA}
7+
18
path:
9+
data: /data/data
10+
logs: /data/log
211
plugins: /elasticsearch/plugins
12+
work: /data/work
13+
14+
bootstrap.mlockall: true
15+
16+
http.enabled: ${HTTP_ENABLE}
17+
18+
cloud:
19+
k8s:
20+
service: ${DISCOVERY_SERVICE}
21+
namespace: ${NAMESPACE}
22+
discovery:
23+
type: io.fabric8.elasticsearch.discovery.k8s.K8sDiscoveryModule
24+
zen.ping.multicast.enabled: false

run.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
3+
export CLUSTER_NAME=${CLUSTER_NAME:-elasticsearch-default}
4+
export NODE_MASTER=${NODE_MASTER:-true}
5+
export NODE_DATA=${NODE_DATA:-true}
6+
export HTTP_ENABLE=${HTTP_ENABLE:-true}
7+
export MULTICAST=${MULTICAST:-true}
8+
9+
export NAMESPACE=${NAMESPACE:-default}
10+
export DISCOVERY_SERVICE=${DISCOVERY_SERVICE:-elasticsearch-discovery}
11+
12+
/elasticsearch/bin/elasticsearch

0 commit comments

Comments
 (0)