Skip to content

Instantly share code, notes, and snippets.

@wickedev
Created July 9, 2020 16:46
Show Gist options
  • Save wickedev/020fe7ed8b8ce95873b21f74fc4b87bc to your computer and use it in GitHub Desktop.
Save wickedev/020fe7ed8b8ce95873b21f74fc4b87bc to your computer and use it in GitHub Desktop.
#!/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