@leverege/build-tools 2.43.1 → 2.43.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.43.1",
3
+ "version": "2.43.2",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -7,10 +7,11 @@ 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
- --namespace elastic --create-namespace \
12
- --version 19 \
13
- --values $LOCAL_ES_VALUES $HELM_WHAT
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