summaryrefslogtreecommitdiffstats
path: root/site/intel-pod17/software/charts
diff options
context:
space:
mode:
authorJames Gu <james.gu@att.com>2020-05-12 11:03:53 -0700
committerJames Gu <james.gu@att.com>2020-05-12 11:03:53 -0700
commit7ff5848463c781a58ac54d2941bd74f3404bf9dc (patch)
tree6e53e105abecc440c1ed6d85725491892240027f /site/intel-pod17/software/charts
parent6bebb81e477fd91ac75d078b3aa7ca9e97d2dde3 (diff)
ElasticSearch improvement
Added elasticseach manifest in cntt type for common configurations tailored for opnfv intel pods, including limiting the memory and disk requests and limits, and tightened the log curation policy. Signed-off-by: James Gu <james.gu@att.com> Change-Id: Ic926b7d0625125ce047ee1fb3cf91df2ecefa77a
Diffstat (limited to 'site/intel-pod17/software/charts')
-rw-r--r--site/intel-pod17/software/charts/osh-infra/elasticsearch.yaml70
1 files changed, 0 insertions, 70 deletions
diff --git a/site/intel-pod17/software/charts/osh-infra/elasticsearch.yaml b/site/intel-pod17/software/charts/osh-infra/elasticsearch.yaml
deleted file mode 100644
index 2f7b3c1..0000000
--- a/site/intel-pod17/software/charts/osh-infra/elasticsearch.yaml
+++ /dev/null
@@ -1,70 +0,0 @@
----
-schema: armada/Chart/v1
-metadata:
- schema: metadata/Document/v1
- name: elasticsearch
- labels:
- name: elasticsearch-type
- layeringDefinition:
- abstract: false
- layer: site
- parentSelector:
- hosttype: elasticsearch-global
- actions:
- - method: merge
- path: .
- storagePolicy: cleartext
-data:
- values:
- pod:
- replicas:
- client: 3
- resources:
- enabled: true
- apache_proxy:
- limits:
- memory: "1024Mi"
- cpu: "2000m"
- requests:
- memory: "0"
- cpu: "0"
- client:
- requests:
- memory: "4Gi"
- cpu: "1000m"
- limits:
- memory: "8Gi"
- cpu: "2000m"
- master:
- requests:
- memory: "4Gi"
- cpu: "1000m"
- limits:
- memory: "8Gi"
- cpu: "2000m"
- data:
- requests:
- memory: "4Gi"
- cpu: "1000m"
- limits:
- memory: "8Gi"
- cpu: "2000m"
- prometheus_elasticsearch_exporter:
- requests:
- memory: "0"
- cpu: "0"
- limits:
- memory: "1024Mi"
- cpu: "2000m"
-
- storage:
- requests:
- storage: 10Gi
- conf:
- elasticsearch:
- env:
- java_opts:
- client: "-Xms2048m -Xmx2048m"
- data: "-Xms2048m -Xmx2048m"
- master: "-Xms2048m -Xmx2048m"
-...