Merge "Add plugin in logstash image"
authorSébastien Determe <sd378r@intl.att.com>
Tue, 18 Sep 2018 08:27:51 +0000 (08:27 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 18 Sep 2018 08:27:51 +0000 (08:27 +0000)
pom.xml
src/main/docker/Dockerfile.logstash [new file with mode: 0644]

diff --git a/pom.xml b/pom.xml
index 68b80ab..e522573 100644 (file)
--- a/pom.xml
+++ b/pom.xml
                                                                                                                                </assembly>
                                                                                                                </build>
                                                                                                </image>
+                                                                                               <image>
+                                                                                                               <name>onap/clamp-dashboard-logstash</name>
+                                                                                                               <alias>onap-clamp-dashboard-logstash</alias>
+                                                                                                               <run>
+                                                                                                                       <skip>true</skip>
+                                                                                                               </run>
+                                                                                                               <build>
+                                                                                                                               <cleanup>true</cleanup>
+                                                                                                                               <tags>
+                                                                                                                                               <tag>latest</tag>
+                                                                                                                                               <tag>${project.docker.latesttagtimestamp.version}</tag>
+                                                                                                                                               <tag>${project.docker.latesttag.version}</tag>
+                                                                                                                               </tags>
+                                                                                                                               <dockerFile>Dockerfile.logstash</dockerFile>
+                                                                                                               </build>
+                                                                                               </image>
                                                                                </images>
                                                                </configuration>
 
diff --git a/src/main/docker/Dockerfile.logstash b/src/main/docker/Dockerfile.logstash
new file mode 100644 (file)
index 0000000..fea3fd6
--- /dev/null
@@ -0,0 +1,7 @@
+FROM  docker.elastic.co/logstash/logstash:6.1.3
+
+MAINTAINER "The Onap Team"
+LABEL Description="Logstash image with some plugins needed for the clamp dashboard"
+
+RUN /usr/share/logstash/bin/logstash-plugin install logstash-filter-elasticsearch
+RUN /usr/share/logstash/bin/logstash-plugin install logstash-filter-prune