@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 +1 -1
- package/src/helm-charts/{elastic-cluster → elasticsearch-cluster}/helmup.plugin +1 -1
- package/src/helm-charts/prometheus/helmup.plugin +1 -3
- package/src/helm-charts/traefik/traefik-local.yaml +2 -4
- package/src/helmup +1 -1
- /package/src/helm-charts/{elastic-cluster → elasticsearch-cluster}/.nohelm +0 -0
- /package/src/helm-charts/{elastic-cluster → elasticsearch-cluster}/elasticsearch-client.yaml +0 -0
- /package/src/helm-charts/{elastic-cluster → elasticsearch-cluster}/elasticsearch-data.yaml +0 -0
- /package/src/helm-charts/{elastic-cluster → elasticsearch-cluster}/elasticsearch-master.yaml +0 -0
package/package.json
CHANGED
|
@@ -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
|
|
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
|
File without changes
|
/package/src/helm-charts/{elastic-cluster → elasticsearch-cluster}/elasticsearch-client.yaml
RENAMED
|
File without changes
|
|
File without changes
|
/package/src/helm-charts/{elastic-cluster → elasticsearch-cluster}/elasticsearch-master.yaml
RENAMED
|
File without changes
|