-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: JeffMboya <[email protected]>
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
helm install elasticsearch stable/elasticsearch \ | ||
--set data.resources.requests.memory=512Mi \ | ||
--set client.replicas=1 \ | ||
--set master.replicas=1 \ | ||
--set cluster.env.MINIMUM_MASTER_NODES=1 \ | ||
--set cluster.env.RECOVER_AFTER_MASTER_NODES=1 \ | ||
--set cluster.env.EXPECTED_MASTER_NODES=1 \ | ||
--set data.replicas=1 \ | ||
--set data.heapSize=300m \ | ||
--set master.persistence.size=10Gi \ | ||
--set data.persistence.size=10Gi \ | ||
--wait | ||
|
||
helm install fluent-bit stable/fluent-bit \ | ||
--set backend.type=es \ | ||
--set backend.es.host=elasticsearch-client \ | ||
--set filter.mergeJSONLog=false | ||
|
||
helm install kibana stable/kibana \ | ||
--set env.ELASTICSEARCH_HOSTS=http://elasticsearch-client:9200 |