Created
July 9, 2020 16:46
-
-
Save wickedev/020fe7ed8b8ce95873b21f74fc4b87bc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
helm upgrade -i efk stable/elastic-stack -n kube-system \ | |
--set elasticsearch.image.tag=6.7.0 \ | |
--set kibana.image.tag=6.7.0 \ | |
--set fluent-bit.backend.type=es \ | |
--set fluent-bit.backend.es.host=efk-elasticsearch-client.kube-system.svc.cluster.local \ | |
--set kibana.env.ELASTICSEARCH_HOSTS=http://efk-elasticsearch-client.kube-system.svc.cluster.local:9200 \ | |
--set fluent-bit.enabled=true \ | |
--set logstash.enabled=false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment