@leverege/build-tools 2.43.1 → 2.43.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -7,19 +7,20 @@ LOCAL_ES_VALUES="elasticsearch8/elasticsearch-local-dev.yaml"
|
|
|
7
7
|
[ ! -f "$LOCAL_ES_VALUES" ] && exitOnError 1 "Missing the local ES config file => `color y $LOCAL_ES_VALUES`"
|
|
8
8
|
|
|
9
9
|
addBitnamiRepo latest
|
|
10
|
+
[ -z "$ELASTIC_CHART_VERSION" ] && ELASTIC_CHART_VERSION="19"
|
|
10
11
|
helm upgrade --install elasticsearch8 bitnami/elasticsearch \
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
--namespace elastic --create-namespace \
|
|
13
|
+
--values $LOCAL_ES_VALUES \
|
|
14
|
+
--version $ELASTIC_CHART_VERSION $HELM_WHAT
|
|
14
15
|
|
|
15
16
|
removeHelmRepo bitnami
|
|
16
17
|
|
|
17
18
|
## Installing ES8 exporter
|
|
18
19
|
addHelmRepo prometheus-community https://prometheus-community.github.io/helm-charts
|
|
19
20
|
helm upgrade --install elasticsearch8-exporter prometheus-community/prometheus-elasticsearch-exporter \
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
--namespace monitoring --create-namespace \
|
|
22
|
+
--version 5 \
|
|
23
|
+
-f - <<ELASTIC8_EXPORTER_CHART_MOD
|
|
23
24
|
fullnameOverride: elasticsearch8-exporter
|
|
24
25
|
|
|
25
26
|
service:
|