summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-04-26 15:59:05 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-04-26 15:59:05 +0200
commite78cdfc32a3ae7d40657e71101cb8a443fab2424 (patch)
tree391f181af8f71ac1f0eb3c74e4d7f5342ea3f518
parentOnce again fix jenkins dns record. (diff)
downloadprofiles-e78cdfc32a3ae7d40657e71101cb8a443fab2424.tar.gz
profiles-e78cdfc32a3ae7d40657e71101cb8a443fab2424.tar.xz
Add elasticsearch and kibana.
-rw-r--r--manifests/elasticsearch.pp8
-rw-r--r--manifests/kibana.pp7
2 files changed, 15 insertions, 0 deletions
diff --git a/manifests/elasticsearch.pp b/manifests/elasticsearch.pp
new file mode 100644
index 0000000..525e228
--- /dev/null
+++ b/manifests/elasticsearch.pp
@@ -0,0 +1,8 @@
+class profiles::elasticsearch (
+) {
+ include ::java
+
+ class { 'elasticsearch':
+ restart_on_change => true,
+ }
+}
diff --git a/manifests/kibana.pp b/manifests/kibana.pp
new file mode 100644
index 0000000..23f9857
--- /dev/null
+++ b/manifests/kibana.pp
@@ -0,0 +1,7 @@
+class profiles::kibana (
+) {
+
+ class { 'kibana':
+ }
+
+}