@leverege/build-tools 2.42.1 → 2.42.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/elasticsearch8/elasticsearch-local-dev.yaml +108 -0
- package/src/helm-charts/elasticsearch8/helmup.plugin +2 -1
- package/src/helm-charts/messenger/values-local.yaml +1 -0
- /package/src/helm-charts/elasticsearch8/{elasticsearch-local.yaml → elasticsearch-local-prd.yaml} +0 -0
package/package.json
CHANGED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# Foundation Chart: https://artifacthub.io/packages/helm/elastic/elasticsearch
|
|
2
|
+
#
|
|
3
|
+
# These settings are for a vanilla initial system setup. For an example of a
|
|
4
|
+
# much beefier ES8 deployment take a look at prd-recovr-auto, which also uses
|
|
5
|
+
# much bigger nodes in the elastic node pool - n2-standard-16.
|
|
6
|
+
#
|
|
7
|
+
# On a production deployment there will most likely be resource definitions
|
|
8
|
+
# for each of the 4 ES node types in the cluster. See prd-recovr-auto for an
|
|
9
|
+
# example of a big beefy system.
|
|
10
|
+
#
|
|
11
|
+
global:
|
|
12
|
+
storageClass: "ssd"
|
|
13
|
+
|
|
14
|
+
fullnameOverride: "elasticsearch8"
|
|
15
|
+
namespaceOverride: "elastic"
|
|
16
|
+
|
|
17
|
+
coordinating:
|
|
18
|
+
replicaCount: 3
|
|
19
|
+
# resources: # default from bitnami chart
|
|
20
|
+
# limits: {}
|
|
21
|
+
# requests:
|
|
22
|
+
# cpu: 25m
|
|
23
|
+
# memory: 256Mi
|
|
24
|
+
affinity:
|
|
25
|
+
nodeAffinity:
|
|
26
|
+
requiredDuringSchedulingIgnoredDuringExecution:
|
|
27
|
+
nodeSelectorTerms:
|
|
28
|
+
- matchExpressions:
|
|
29
|
+
- key: target-env
|
|
30
|
+
operator: In
|
|
31
|
+
values:
|
|
32
|
+
- database
|
|
33
|
+
tolerations:
|
|
34
|
+
- key: "database"
|
|
35
|
+
operator: "Equal"
|
|
36
|
+
value: "true"
|
|
37
|
+
effect: "NoSchedule"
|
|
38
|
+
|
|
39
|
+
data:
|
|
40
|
+
replicaCount: 3
|
|
41
|
+
# resources: # defaults from bitnami chart
|
|
42
|
+
# limits: {}
|
|
43
|
+
# requests:
|
|
44
|
+
# cpu: 25m
|
|
45
|
+
# memory: 2048Mi
|
|
46
|
+
persistence:
|
|
47
|
+
enabled: true
|
|
48
|
+
size: 64Gi
|
|
49
|
+
affinity:
|
|
50
|
+
nodeAffinity:
|
|
51
|
+
requiredDuringSchedulingIgnoredDuringExecution:
|
|
52
|
+
nodeSelectorTerms:
|
|
53
|
+
- matchExpressions:
|
|
54
|
+
- key: target-env
|
|
55
|
+
operator: In
|
|
56
|
+
values:
|
|
57
|
+
- database
|
|
58
|
+
tolerations:
|
|
59
|
+
- key: "database"
|
|
60
|
+
operator: "Equal"
|
|
61
|
+
value: "true"
|
|
62
|
+
effect: "NoSchedule"
|
|
63
|
+
|
|
64
|
+
ingest:
|
|
65
|
+
replicaCount: 3
|
|
66
|
+
# no default resources specified
|
|
67
|
+
affinity:
|
|
68
|
+
nodeAffinity:
|
|
69
|
+
requiredDuringSchedulingIgnoredDuringExecution:
|
|
70
|
+
nodeSelectorTerms:
|
|
71
|
+
- matchExpressions:
|
|
72
|
+
- key: target-env
|
|
73
|
+
operator: In
|
|
74
|
+
values:
|
|
75
|
+
- database
|
|
76
|
+
tolerations:
|
|
77
|
+
- key: "database"
|
|
78
|
+
operator: "Equal"
|
|
79
|
+
value: "true"
|
|
80
|
+
effect: "NoSchedule"
|
|
81
|
+
|
|
82
|
+
master:
|
|
83
|
+
replicaCount: 3
|
|
84
|
+
# resources: # example from the bitnami chart
|
|
85
|
+
# ## Example:
|
|
86
|
+
# ## limits:
|
|
87
|
+
# ## cpu: 500m
|
|
88
|
+
# ## memory: 1Gi
|
|
89
|
+
# limits: {}
|
|
90
|
+
# ## Examples:
|
|
91
|
+
# ## requests:
|
|
92
|
+
# ## cpu: 250m
|
|
93
|
+
# ## memory: 256Mi
|
|
94
|
+
# requests: {}
|
|
95
|
+
affinity:
|
|
96
|
+
nodeAffinity:
|
|
97
|
+
requiredDuringSchedulingIgnoredDuringExecution:
|
|
98
|
+
nodeSelectorTerms:
|
|
99
|
+
- matchExpressions:
|
|
100
|
+
- key: target-env
|
|
101
|
+
operator: In
|
|
102
|
+
values:
|
|
103
|
+
- database
|
|
104
|
+
tolerations:
|
|
105
|
+
- key: "database"
|
|
106
|
+
operator: "Equal"
|
|
107
|
+
value: "true"
|
|
108
|
+
effect: "NoSchedule"
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
#
|
|
3
3
|
showInstalling "Elastic Search 8"
|
|
4
4
|
|
|
5
|
-
LOCAL_ES_VALUES="elasticsearch8/elasticsearch-local.yaml"
|
|
5
|
+
LOCAL_ES_VALUES="elasticsearch8/elasticsearch-local-dev.yaml"
|
|
6
|
+
#LOCAL_ES_VALUES="elasticsearch8/elasticsearch-local-prd.yaml"
|
|
6
7
|
[ ! -f "$LOCAL_ES_VALUES" ] && exitOnError 1 "Missing the local ES config file => `color y $LOCAL_ES_VALUES`"
|
|
7
8
|
|
|
8
9
|
addBitnamiRepo latest
|
/package/src/helm-charts/elasticsearch8/{elasticsearch-local.yaml → elasticsearch-local-prd.yaml}
RENAMED
|
File without changes
|