File tree Expand file tree Collapse file tree 4 files changed +29
-7
lines changed Expand file tree Collapse file tree 4 files changed +29
-7
lines changed Original file line number Diff line number Diff line change 52
52
exit 1
53
53
terminationGracePeriodSeconds : 10
54
54
serviceAccountName : {{ include "parseable.serviceAccountName" . }}
55
+ {{- with .Values.parseable.highAvailability.ingestor.nodeSelector }}
56
+ nodeSelector :
57
+ {{- toYaml . | nindent 8 }}
58
+ {{- end }}
59
+ {{- with .Values.parseable.highAvailability.ingestor.tolerations }}
60
+ tolerations :
61
+ {{- toYaml . | nindent 8 }}
62
+ {{- end }}
55
63
containers :
56
64
- name : {{ .Chart.Name }}
57
65
securityContext :
Original file line number Diff line number Diff line change 37
37
spec :
38
38
terminationGracePeriodSeconds : 10
39
39
serviceAccountName : {{ include "parseable.serviceAccountName" . }}
40
+ {{- with .Values.parseable.toleration }}
41
+ tolerations :
42
+ {{ toYaml . | nindent 8 }}
43
+ {{- end }}
40
44
containers :
41
45
- name : {{ .Chart.Name }}
42
46
securityContext :
55
59
{{- if .Values.parseable.persistence.querier.enabled }}
56
60
- name : P_HOT_TIER_DIR
57
61
value : " /parseable/hot-tier"
62
+ - name : P_MAX_DISK_USAGE_PERCENT
63
+ value : " 95.0"
58
64
{{- end }}
59
65
{{- range $key, $value := .Values.parseable.env }}
60
66
- name : {{ $key }}
@@ -113,7 +119,7 @@ spec:
113
119
{{- end }}
114
120
ports :
115
121
- containerPort : 8000
116
- {{- with .Values.readinessProbe }}
122
+ {{- with .Values.parseable. readinessProbe }}
117
123
readinessProbe :
118
124
{{ toYaml . | nindent 12 }}
119
125
{{- end }}
@@ -159,6 +165,15 @@ spec:
159
165
resources :
160
166
requests :
161
167
storage : {{ .Values.parseable.persistence.querier.size | quote }}
168
+ - metadata :
169
+ name : stage-volume
170
+ spec :
171
+ accessModes :
172
+ - {{ .Values.parseable.persistence.querier.accessMode | quote }}
173
+ storageClassName : {{ .Values.parseable.persistence.querier.storageClass | quote }}
174
+ resources :
175
+ requests :
176
+ storage : 5Gi
162
177
{{- end }}
163
178
{{- if .Values.parseable.sidecar.enabled}}
164
179
{{- .Values.parseable.sidecar.volumeClaimTemplates | toYaml | nindent 4 }}
Original file line number Diff line number Diff line change @@ -145,11 +145,7 @@ spec:
145
145
nodeSelector :
146
146
{{- toYaml . | nindent 8 }}
147
147
{{- end }}
148
- {{- with .Values.parseable.affinity }}
149
- affinity :
150
- {{- toYaml . | nindent 8 }}
151
- {{- end }}
152
- {{- with .Values.parseable.tolerations }}
148
+ {{- with .Values.parseable.toleration }}
153
149
tolerations :
154
150
{{- toYaml . | nindent 8 }}
155
151
{{- end }}
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ parseable:
12
12
ingestor :
13
13
port : 8000
14
14
podAnnotations : {}
15
+ nodeSelector : {}
16
+ tolerations : []
15
17
labels :
16
18
app : parseable
17
19
component : ingestor
@@ -79,7 +81,7 @@ parseable:
79
81
enabled : false
80
82
storageClass : " "
81
83
accessMode : ReadWriteOnce
82
- size : 20Gi
84
+ size : 100Gi
83
85
# # comment out the secrets depending upon deployment option
84
86
# # localModeSecret if store is set to local
85
87
# # blobModeSecret if store is set to blob-store
@@ -151,6 +153,7 @@ parseable:
151
153
httpGet :
152
154
path : /api/v1/readiness
153
155
port : 8000
156
+ toleration : []
154
157
resources :
155
158
limits :
156
159
cpu : 500m
You can’t perform that action at this time.
0 commit comments