@leverege/build-tools 2.31.1 → 2.31.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.31.1",
3
+ "version": "2.31.3",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -13,7 +13,7 @@ deployES() {
13
13
  printf "\n Deploying ES cluster component: `color y "$ES_TYPE"`\n"
14
14
  helm upgrade --install $ES_TYPE elastic/elasticsearch \
15
15
  --version $ES_VERSION \
16
- --values elastic-cluster/$ES_TYPE.yaml
16
+ --values elasticsearch-cluster/$ES_TYPE.yaml $HELM_WHAT
17
17
  }
18
18
 
19
19
  deployES "master"
@@ -2,13 +2,11 @@
2
2
  #
3
3
  showInstalling "Prometheus"
4
4
 
5
- createNamespaceIfNeeded monitoring
6
-
7
5
  addHelmRepo prometheus-community https://prometheus-community.github.io/helm-charts
8
6
 
9
7
  [ -z "$PROMETHEUS_CHART_VERSION" ] && PROMETHEUS_CHART_VERSION="15"
10
8
  helm upgrade --install prometheus prometheus-community/prometheus \
11
- --namespace monitoring \
9
+ --namespace monitoring --create-namespace \
12
10
  --values prometheus/values.yaml \
13
11
  --version $PROMETHEUS_CHART_VERSION $HELM_WHAT
14
12
 
@@ -1,16 +1,14 @@
1
+ # This is the reserved static IP - see GCP -> VPC network -> IP addresses
1
2
  #service:
2
3
  # spec:
3
4
  # loadBalancerIP: xx.xx.xx.xx
4
5
 
5
- additionalArguments:
6
- - "--api.debug=true"
7
- - "--api.dashboard=true"
8
-
9
6
  deployment:
10
7
  replicas: 3
11
8
 
12
9
  logs:
13
10
  general:
11
+ format: json
14
12
  level: WARN # DEBUG
15
13
  access:
16
14
  enabled: true
package/src/helmup CHANGED
@@ -660,7 +660,7 @@ function doInstall() {
660
660
  bootstrapLocalSetup $SERVICE
661
661
  ;;
662
662
 
663
- "elastic-cluster") # complex master/data/client ES cluster
663
+ "elasticsearch-cluster") # complex master/data/client ES cluster
664
664
  bootstrapLocalSetup $SERVICE
665
665
  ;;
666
666