File tree Expand file tree Collapse file tree 3 files changed +10
-18
lines changed
terraform/modules/k8s-addons Expand file tree Collapse file tree 3 files changed +10
-18
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ resource "helm_release" "logstash" {
20
20
version = local. logstash . chart_version
21
21
22
22
namespace = " elk"
23
- timeout = " 180 "
23
+ timeout = " 600 "
24
24
max_history = var. helm_release_history_size
25
25
26
26
values = compact (
Original file line number Diff line number Diff line change @@ -27,22 +27,6 @@ filebeatConfig:
27
27
setup.ilm.enabled: false
28
28
output.logstash:
29
29
hosts: ["logstash-logstash.elk.svc:5044"]
30
- extraEnvs :
31
- - name : ' ELASTICSEARCH_USERNAME'
32
- valueFrom :
33
- secretKeyRef :
34
- name : elastic-credentials
35
- key : username
36
- - name : ' ELASTICSEARCH_PASSWORD'
37
- valueFrom :
38
- secretKeyRef :
39
- name : elastic-credentials
40
- key : password
41
- - name : ' ELASTICSEARCH_HOST'
42
- valueFrom :
43
- secretKeyRef :
44
- name : elastic-credentials
45
- key : host
46
30
47
31
resources :
48
32
requests :
Original file line number Diff line number Diff line change 1
- replicas : 1
1
+ replicas : 2
2
2
3
3
resources :
4
4
requests :
@@ -112,3 +112,11 @@ extraVolumeMounts:
112
112
mountPath : /etc/logstash/certificates
113
113
readOnly : true
114
114
115
+ nodeAffinity :
116
+ requiredDuringSchedulingIgnoredDuringExecution :
117
+ nodeSelectorTerms :
118
+ - matchExpressions :
119
+ - key : karpenter.sh/capacity-type
120
+ operator : In
121
+ values :
122
+ - spot
You can’t perform that action at this time.
0 commit comments