@leverege/build-tools 2.50.2 → 2.50.4
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 +3 -3
- package/registry-compass.yaml +20 -0
- package/src/chart-compass.mjs +96 -0
- package/src/helm-charts/cnpg-db-psql-stack/cluster.yaml.ovh +1 -1
- package/src/helm-charts/cnpg-db-psql-stack/gitignore +1 -1
- package/src/helm-charts/cnpg-db-psql-stack/helmdn.plugin +1 -1
- package/src/helm-charts/cnpg-db-tsdb-basic/cluster.yaml.ovh +1 -1
- package/src/helm-charts/cnpg-db-tsdb-basic/gitignore +1 -1
- package/src/helm-charts/cnpg-db-tsdb-basic/helmdn.plugin +1 -1
- package/src/helm-charts/cnpg-db-tsdb-dense/{cluster.yalm.ovh → cluster.yaml.ovh} +1 -1
- package/src/helm-charts/cnpg-db-tsdb-dense/gitignore +1 -1
- package/src/helm-charts/cnpg-db-tsdb-dense/helmdn.plugin +1 -1
- package/src/helm-charts/elasticsearch8/helmup.plugin +5 -0
- package/src/helm-charts/redis/helmup.plugin +1 -1
- package/src/helm-charts/stackdriver-exporter/values-local.yaml +21 -0
- package/src/helm-charts/traefik/helmup.plugin +9 -2
- package/src/helm-charts/traefik/traefik-local.yaml +6 -0
- package/src/helm-charts/velero/velero-local.yaml +10 -0
- package/src/zx-testing +216 -0
- package/src/helm-charts/elasticsearch-helm-gke1.25/.helmignore +0 -2
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/Chart.yaml +0 -12
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/Makefile +0 -1
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/README.md +0 -1
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/NOTES.txt +0 -6
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/_helpers.tpl +0 -65
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/configmap.yaml +0 -34
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/ingress.yaml +0 -64
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/networkpolicy.yaml +0 -61
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/poddisruptionbudget.yaml +0 -12
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/podsecuritypolicy.yaml +0 -14
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/role.yaml +0 -25
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/rolebinding.yaml +0 -24
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/service.yaml +0 -76
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/serviceaccount.yaml +0 -20
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/templates/statefulset.yaml +0 -390
- package/src/helm-charts/elasticsearch-helm-gke1.25/helm/values.yaml +0 -352
|
@@ -1,352 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
clusterName: "elasticsearch"
|
|
3
|
-
nodeGroup: "master"
|
|
4
|
-
|
|
5
|
-
# The service that non master groups will try to connect to when joining the cluster
|
|
6
|
-
# This should be set to clusterName + "-" + nodeGroup for your master group
|
|
7
|
-
masterService: ""
|
|
8
|
-
|
|
9
|
-
# Elasticsearch roles that will be applied to this nodeGroup
|
|
10
|
-
# These will be set as environment variables. E.g. node.master=true
|
|
11
|
-
roles:
|
|
12
|
-
master: "true"
|
|
13
|
-
ingest: "true"
|
|
14
|
-
data: "true"
|
|
15
|
-
remote_cluster_client: "true"
|
|
16
|
-
ml: "true"
|
|
17
|
-
|
|
18
|
-
replicas: 3
|
|
19
|
-
minimumMasterNodes: 2
|
|
20
|
-
|
|
21
|
-
esMajorVersion: ""
|
|
22
|
-
|
|
23
|
-
clusterDeprecationIndexing: "false"
|
|
24
|
-
|
|
25
|
-
# Allows you to add any config files in /usr/share/elasticsearch/config/
|
|
26
|
-
# such as elasticsearch.yml and log4j2.properties
|
|
27
|
-
esConfig: {}
|
|
28
|
-
# elasticsearch.yml: |
|
|
29
|
-
# key:
|
|
30
|
-
# nestedkey: value
|
|
31
|
-
# log4j2.properties: |
|
|
32
|
-
# key = value
|
|
33
|
-
|
|
34
|
-
esJvmOptions: {}
|
|
35
|
-
# processors.options: |
|
|
36
|
-
# -XX:ActiveProcessorCount=3
|
|
37
|
-
|
|
38
|
-
# Extra environment variables to append to this nodeGroup
|
|
39
|
-
# This will be appended to the current 'env:' key. You can use any of the kubernetes env
|
|
40
|
-
# syntax here
|
|
41
|
-
extraEnvs: []
|
|
42
|
-
# - name: MY_ENVIRONMENT_VAR
|
|
43
|
-
# value: the_value_goes_here
|
|
44
|
-
|
|
45
|
-
# Allows you to load environment variables from kubernetes secret or config map
|
|
46
|
-
envFrom: []
|
|
47
|
-
# - secretRef:
|
|
48
|
-
# name: env-secret
|
|
49
|
-
# - configMapRef:
|
|
50
|
-
# name: config-map
|
|
51
|
-
|
|
52
|
-
# A list of secrets and their paths to mount inside the pod
|
|
53
|
-
# This is useful for mounting certificates for security and for mounting
|
|
54
|
-
# the X-Pack license
|
|
55
|
-
secretMounts: []
|
|
56
|
-
# - name: elastic-certificates
|
|
57
|
-
# secretName: elastic-certificates
|
|
58
|
-
# path: /usr/share/elasticsearch/config/certs
|
|
59
|
-
# defaultMode: 0755
|
|
60
|
-
|
|
61
|
-
hostAliases: []
|
|
62
|
-
#- ip: "127.0.0.1"
|
|
63
|
-
# hostnames:
|
|
64
|
-
# - "foo.local"
|
|
65
|
-
# - "bar.local"
|
|
66
|
-
|
|
67
|
-
image: "docker.elastic.co/elasticsearch/elasticsearch"
|
|
68
|
-
imageTag: "7.16.3"
|
|
69
|
-
imagePullPolicy: "IfNotPresent"
|
|
70
|
-
|
|
71
|
-
podAnnotations:
|
|
72
|
-
{}
|
|
73
|
-
# iam.amazonaws.com/role: es-cluster
|
|
74
|
-
|
|
75
|
-
# additionals labels
|
|
76
|
-
labels: {}
|
|
77
|
-
|
|
78
|
-
esJavaOpts: "" # example: "-Xmx1g -Xms1g"
|
|
79
|
-
|
|
80
|
-
resources:
|
|
81
|
-
requests:
|
|
82
|
-
cpu: "1000m"
|
|
83
|
-
memory: "2Gi"
|
|
84
|
-
limits:
|
|
85
|
-
cpu: "1000m"
|
|
86
|
-
memory: "2Gi"
|
|
87
|
-
|
|
88
|
-
initResources:
|
|
89
|
-
{}
|
|
90
|
-
# limits:
|
|
91
|
-
# cpu: "25m"
|
|
92
|
-
# # memory: "128Mi"
|
|
93
|
-
# requests:
|
|
94
|
-
# cpu: "25m"
|
|
95
|
-
# memory: "128Mi"
|
|
96
|
-
|
|
97
|
-
networkHost: "0.0.0.0"
|
|
98
|
-
|
|
99
|
-
volumeClaimTemplate:
|
|
100
|
-
accessModes: ["ReadWriteOnce"]
|
|
101
|
-
resources:
|
|
102
|
-
requests:
|
|
103
|
-
storage: 30Gi
|
|
104
|
-
|
|
105
|
-
rbac:
|
|
106
|
-
create: false
|
|
107
|
-
serviceAccountAnnotations: {}
|
|
108
|
-
serviceAccountName: ""
|
|
109
|
-
automountToken: true
|
|
110
|
-
|
|
111
|
-
podSecurityPolicy:
|
|
112
|
-
create: false
|
|
113
|
-
name: ""
|
|
114
|
-
spec:
|
|
115
|
-
privileged: true
|
|
116
|
-
fsGroup:
|
|
117
|
-
rule: RunAsAny
|
|
118
|
-
runAsUser:
|
|
119
|
-
rule: RunAsAny
|
|
120
|
-
seLinux:
|
|
121
|
-
rule: RunAsAny
|
|
122
|
-
supplementalGroups:
|
|
123
|
-
rule: RunAsAny
|
|
124
|
-
volumes:
|
|
125
|
-
- secret
|
|
126
|
-
- configMap
|
|
127
|
-
- persistentVolumeClaim
|
|
128
|
-
- emptyDir
|
|
129
|
-
|
|
130
|
-
persistence:
|
|
131
|
-
enabled: true
|
|
132
|
-
labels:
|
|
133
|
-
# Add default labels for the volumeClaimTemplate of the StatefulSet
|
|
134
|
-
enabled: false
|
|
135
|
-
annotations: {}
|
|
136
|
-
|
|
137
|
-
extraVolumes:
|
|
138
|
-
[]
|
|
139
|
-
# - name: extras
|
|
140
|
-
# emptyDir: {}
|
|
141
|
-
|
|
142
|
-
extraVolumeMounts:
|
|
143
|
-
[]
|
|
144
|
-
# - name: extras
|
|
145
|
-
# mountPath: /usr/share/extras
|
|
146
|
-
# readOnly: true
|
|
147
|
-
|
|
148
|
-
extraContainers:
|
|
149
|
-
[]
|
|
150
|
-
# - name: do-something
|
|
151
|
-
# image: busybox
|
|
152
|
-
# command: ['do', 'something']
|
|
153
|
-
|
|
154
|
-
extraInitContainers:
|
|
155
|
-
[]
|
|
156
|
-
# - name: do-something
|
|
157
|
-
# image: busybox
|
|
158
|
-
# command: ['do', 'something']
|
|
159
|
-
|
|
160
|
-
# This is the PriorityClass settings as defined in
|
|
161
|
-
# https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
|
|
162
|
-
priorityClassName: ""
|
|
163
|
-
|
|
164
|
-
# By default this will make sure two pods don't end up on the same node
|
|
165
|
-
# Changing this to a region would allow you to spread pods across regions
|
|
166
|
-
antiAffinityTopologyKey: "kubernetes.io/hostname"
|
|
167
|
-
|
|
168
|
-
# Hard means that by default pods will only be scheduled if there are enough nodes for them
|
|
169
|
-
# and that they will never end up on the same node. Setting this to soft will do this "best effort"
|
|
170
|
-
antiAffinity: "hard"
|
|
171
|
-
|
|
172
|
-
# This is the node affinity settings as defined in
|
|
173
|
-
# https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#node-affinity-beta-feature
|
|
174
|
-
nodeAffinity: {}
|
|
175
|
-
|
|
176
|
-
# The default is to deploy all pods serially. By setting this to parallel all pods are started at
|
|
177
|
-
# the same time when bootstrapping the cluster
|
|
178
|
-
podManagementPolicy: "Parallel"
|
|
179
|
-
|
|
180
|
-
# The environment variables injected by service links are not used, but can lead to slow Elasticsearch boot times when
|
|
181
|
-
# there are many services in the current namespace.
|
|
182
|
-
# If you experience slow pod startups you probably want to set this to `false`.
|
|
183
|
-
enableServiceLinks: true
|
|
184
|
-
|
|
185
|
-
protocol: http
|
|
186
|
-
httpPort: 9200
|
|
187
|
-
transportPort: 9300
|
|
188
|
-
|
|
189
|
-
service:
|
|
190
|
-
enabled: true
|
|
191
|
-
labels: {}
|
|
192
|
-
labelsHeadless: {}
|
|
193
|
-
type: ClusterIP
|
|
194
|
-
nodePort: ""
|
|
195
|
-
annotations: {}
|
|
196
|
-
httpPortName: http
|
|
197
|
-
transportPortName: transport
|
|
198
|
-
loadBalancerIP: ""
|
|
199
|
-
loadBalancerSourceRanges: []
|
|
200
|
-
externalTrafficPolicy: ""
|
|
201
|
-
|
|
202
|
-
updateStrategy: RollingUpdate
|
|
203
|
-
|
|
204
|
-
# This is the max unavailable setting for the pod disruption budget
|
|
205
|
-
# The default value of 1 will make sure that kubernetes won't allow more than 1
|
|
206
|
-
# of your pods to be unavailable during maintenance
|
|
207
|
-
maxUnavailable: 1
|
|
208
|
-
|
|
209
|
-
podSecurityContext:
|
|
210
|
-
fsGroup: 1000
|
|
211
|
-
runAsUser: 1000
|
|
212
|
-
|
|
213
|
-
securityContext:
|
|
214
|
-
capabilities:
|
|
215
|
-
drop:
|
|
216
|
-
- ALL
|
|
217
|
-
# readOnlyRootFilesystem: true
|
|
218
|
-
runAsNonRoot: true
|
|
219
|
-
runAsUser: 1000
|
|
220
|
-
|
|
221
|
-
# How long to wait for elasticsearch to stop gracefully
|
|
222
|
-
terminationGracePeriod: 120
|
|
223
|
-
|
|
224
|
-
sysctlVmMaxMapCount: 262144
|
|
225
|
-
|
|
226
|
-
readinessProbe:
|
|
227
|
-
failureThreshold: 3
|
|
228
|
-
initialDelaySeconds: 10
|
|
229
|
-
periodSeconds: 10
|
|
230
|
-
successThreshold: 3
|
|
231
|
-
timeoutSeconds: 5
|
|
232
|
-
|
|
233
|
-
# https://www.elastic.co/guide/en/elasticsearch/reference/7.16/cluster-health.html#request-params wait_for_status
|
|
234
|
-
clusterHealthCheckParams: "wait_for_status=green&timeout=1s"
|
|
235
|
-
|
|
236
|
-
## Use an alternate scheduler.
|
|
237
|
-
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
|
|
238
|
-
##
|
|
239
|
-
schedulerName: ""
|
|
240
|
-
|
|
241
|
-
imagePullSecrets: []
|
|
242
|
-
nodeSelector: {}
|
|
243
|
-
tolerations: []
|
|
244
|
-
|
|
245
|
-
# Enabling this will publicly expose your Elasticsearch instance.
|
|
246
|
-
# Only enable this if you have security enabled on your cluster
|
|
247
|
-
ingress:
|
|
248
|
-
enabled: false
|
|
249
|
-
annotations: {}
|
|
250
|
-
# kubernetes.io/ingress.class: nginx
|
|
251
|
-
# kubernetes.io/tls-acme: "true"
|
|
252
|
-
className: "nginx"
|
|
253
|
-
pathtype: ImplementationSpecific
|
|
254
|
-
hosts:
|
|
255
|
-
- host: chart-example.local
|
|
256
|
-
paths:
|
|
257
|
-
- path: /
|
|
258
|
-
tls: []
|
|
259
|
-
# - secretName: chart-example-tls
|
|
260
|
-
# hosts:
|
|
261
|
-
# - chart-example.local
|
|
262
|
-
|
|
263
|
-
nameOverride: ""
|
|
264
|
-
fullnameOverride: ""
|
|
265
|
-
healthNameOverride: ""
|
|
266
|
-
|
|
267
|
-
lifecycle:
|
|
268
|
-
{}
|
|
269
|
-
# preStop:
|
|
270
|
-
# exec:
|
|
271
|
-
# command: ["/bin/sh", "-c", "echo Hello from the postStart handler > /usr/share/message"]
|
|
272
|
-
# postStart:
|
|
273
|
-
# exec:
|
|
274
|
-
# command:
|
|
275
|
-
# - bash
|
|
276
|
-
# - -c
|
|
277
|
-
# - |
|
|
278
|
-
# #!/bin/bash
|
|
279
|
-
# # Add a template to adjust number of shards/replicas
|
|
280
|
-
# TEMPLATE_NAME=my_template
|
|
281
|
-
# INDEX_PATTERN="logstash-*"
|
|
282
|
-
# SHARD_COUNT=8
|
|
283
|
-
# REPLICA_COUNT=1
|
|
284
|
-
# ES_URL=http://localhost:9200
|
|
285
|
-
# while [[ "$(curl -s -o /dev/null -w '%{http_code}\n' $ES_URL)" != "200" ]]; do sleep 1; done
|
|
286
|
-
# curl -XPUT "$ES_URL/_template/$TEMPLATE_NAME" -H 'Content-Type: application/json' -d'{"index_patterns":['\""$INDEX_PATTERN"\"'],"settings":{"number_of_shards":'$SHARD_COUNT',"number_of_replicas":'$REPLICA_COUNT'}}'
|
|
287
|
-
|
|
288
|
-
sysctlInitContainer:
|
|
289
|
-
enabled: true
|
|
290
|
-
|
|
291
|
-
keystore: []
|
|
292
|
-
|
|
293
|
-
networkPolicy:
|
|
294
|
-
## Enable creation of NetworkPolicy resources. Only Ingress traffic is filtered for now.
|
|
295
|
-
## In order for a Pod to access Elasticsearch, it needs to have the following label:
|
|
296
|
-
## {{ template "uname" . }}-client: "true"
|
|
297
|
-
## Example for default configuration to access HTTP port:
|
|
298
|
-
## elasticsearch-master-http-client: "true"
|
|
299
|
-
## Example for default configuration to access transport port:
|
|
300
|
-
## elasticsearch-master-transport-client: "true"
|
|
301
|
-
|
|
302
|
-
http:
|
|
303
|
-
enabled: false
|
|
304
|
-
## if explicitNamespacesSelector is not set or set to {}, only client Pods being in the networkPolicy's namespace
|
|
305
|
-
## and matching all criteria can reach the DB.
|
|
306
|
-
## But sometimes, we want the Pods to be accessible to clients from other namespaces, in this case, we can use this
|
|
307
|
-
## parameter to select these namespaces
|
|
308
|
-
##
|
|
309
|
-
# explicitNamespacesSelector:
|
|
310
|
-
# # Accept from namespaces with all those different rules (only from whitelisted Pods)
|
|
311
|
-
# matchLabels:
|
|
312
|
-
# role: frontend
|
|
313
|
-
# matchExpressions:
|
|
314
|
-
# - {key: role, operator: In, values: [frontend]}
|
|
315
|
-
## Additional NetworkPolicy Ingress "from" rules to set. Note that all rules are OR-ed.
|
|
316
|
-
##
|
|
317
|
-
# additionalRules:
|
|
318
|
-
# - podSelector:
|
|
319
|
-
# matchLabels:
|
|
320
|
-
# role: frontend
|
|
321
|
-
# - podSelector:
|
|
322
|
-
# matchExpressions:
|
|
323
|
-
# - key: role
|
|
324
|
-
# operator: In
|
|
325
|
-
# values:
|
|
326
|
-
# - frontend
|
|
327
|
-
|
|
328
|
-
transport:
|
|
329
|
-
## Note that all Elasticsearch Pods can talk to themselves using transport port even if enabled.
|
|
330
|
-
enabled: false
|
|
331
|
-
# explicitNamespacesSelector:
|
|
332
|
-
# matchLabels:
|
|
333
|
-
# role: frontend
|
|
334
|
-
# matchExpressions:
|
|
335
|
-
# - {key: role, operator: In, values: [frontend]}
|
|
336
|
-
# additionalRules:
|
|
337
|
-
# - podSelector:
|
|
338
|
-
# matchLabels:
|
|
339
|
-
# role: frontend
|
|
340
|
-
# - podSelector:
|
|
341
|
-
# matchExpressions:
|
|
342
|
-
# - key: role
|
|
343
|
-
# operator: In
|
|
344
|
-
# values:
|
|
345
|
-
# - frontend
|
|
346
|
-
|
|
347
|
-
tests:
|
|
348
|
-
enabled: true
|
|
349
|
-
|
|
350
|
-
# Deprecated
|
|
351
|
-
# please use the above podSecurityContext.fsGroup instead
|
|
352
|
-
fsGroup: ""
|