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
--- | |
dependencies: | |
- name: "elasticsearch" | |
repository: "@elastic" | |
version: "7.6.2" | |
- name: "fluentd-elasticsearch" | |
repository: "@kiwigrid" | |
version: "6.2.3" | |
- name: "kibana" | |
repository: "@elastic" |
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 | |
set -e | |
if [[ -z $CA_PASSWD ]] || [[ -z $CERT_PASSWD ]] ; then | |
echo " Provide CA Password [CA_PASSWD] and Cert password [CERT_PASSWD] before hand" | |
exit 1 | |
fi | |
rm -f elastic-certificates.p12 elastic-certificate.pem elastic-stack-ca.p12 || true | |
#password=$$([ ! -z "$$ELASTIC_PASSWORD" ] && echo $$ELASTIC_PASSWORD || echo $$(docker run --rm $(ELASTICSEARCH_IMAGE) /bin/sh -c "< /dev/urandom tr -cd '[:alnum:]' | head -c20")) && \ | |
docker run --name elastic-helm-charts-certs -i -w /app \ |
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
main: | |
es: | |
username: elastic | |
password: elastic$123 | |
kibana: | |
encryptionkey: R@nD0mP@SS | |
# ElasticSearch Configurations | |
elasticsearch: | |
protocol: https |