aboutsummaryrefslogtreecommitdiffstats
path: root/roles/elasticsearch
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-10-12 20:23:37 +0100
committerGravatar Johannes Christ <[email protected]>2022-10-18 23:14:17 +0200
commit1295dd8f97b7aed56cfa842da7d1923af1a526d5 (patch)
tree74d7eca1ce00bedd34094a441060b0f0d95afead /roles/elasticsearch
parentDisable `fqcn-builtins` lint (diff)
Delete roles we won't use with self-hosted k8s
Diffstat (limited to 'roles/elasticsearch')
-rw-r--r--roles/elasticsearch/README.md3
-rw-r--r--roles/elasticsearch/meta/main.yml5
-rw-r--r--roles/elasticsearch/tasks/main.yml15
3 files changed, 0 insertions, 23 deletions
diff --git a/roles/elasticsearch/README.md b/roles/elasticsearch/README.md
deleted file mode 100644
index 1896679..0000000
--- a/roles/elasticsearch/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Role "elasticsearch"
-
-The elasticsearch role installs and configures Elasticsearch.
diff --git a/roles/elasticsearch/meta/main.yml b/roles/elasticsearch/meta/main.yml
deleted file mode 100644
index 91796da..0000000
--- a/roles/elasticsearch/meta/main.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-dependencies:
- - role: elasticsearch-repos
- tags:
- - role::elasticsearch
diff --git a/roles/elasticsearch/tasks/main.yml b/roles/elasticsearch/tasks/main.yml
deleted file mode 100644
index 9a69b24..0000000
--- a/roles/elasticsearch/tasks/main.yml
+++ /dev/null
@@ -1,15 +0,0 @@
----
-- name: Install Elasticsearch
- apt:
- pkg: elasticsearch
- state: present
- tags:
- - role::elasticsearch
-
-- name: Start and enable Elasticsearch
- service:
- name: elasticsearch
- state: started
- enabled: true
- tags:
- - role::elasticsearch