forked from kubesphere-sigs/fluent-operator-walkthrough
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy-es.sh
executable file
·22 lines (16 loc) · 952 Bytes
/
deploy-es.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
set -eu
# Simple script to deploy Elastic to a Kubernetes cluster with context already set
ES_NAMESPACE=${ES_NAMESPACE:-elastic}
if [[ "${INSTALL_HELM:-no}" == "yes" ]]; then
# See https://helm.sh/docs/intro/install/
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
fi
helm repo add elasticsearch https://helm.elastic.co || helm repo add elasticsearch https://helm.elastic.co/
helm repo update
helm upgrade --install --namespace="$ES_NAMESPACE" --create-namespace --wait elasticsearch elasticsearch/elasticsearch \
--set replicas=1,minMasterNodes=1
# Kibana is provided primarily for visualisation
helm upgrade --install --namespace="$ES_NAMESPACE" --create-namespace --wait kibana elasticsearch/kibana
echo "Kibana deployed, now set up indexes by going to http://localhost:5601/app/management/kibana/indexPatterns after running:"
echo "kubectl port-forward -n elastic svc/kibana-kibana 5601"