Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dea2cb9

Browse files
nitishtAdheipSingh
authored andcommitted
helm: make terminationGracePeriodSeconds configurable for ingestor and querier (parseablehq#1673)
--------- Co-authored-by: AdheipSingh <[email protected]>
1 parent 57dd9e9 commit dea2cb9

8 files changed

Lines changed: 146 additions & 94 deletions

File tree

helm-releases/parseable-2.8.3.tgz

51.5 KB
Binary file not shown.
-55.9 KB
Binary file not shown.
55.5 KB
Binary file not shown.

helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: parseable
33
description: Helm chart for Parseable OSS version. Columnar data lake platform - purpose built for observability
44
type: application
5-
version: 2.8.2
5+
version: 2.8.3
66
appVersion: "v2.8.0"
77
icon: "https://raw.githubusercontent.com/parseablehq/.github/main/images/logo.svg"
88

helm/templates/ingestor-statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ spec:
5656
done
5757
echo "Query service did not become ready in time. Exiting."
5858
exit 1
59-
terminationGracePeriodSeconds: 10
59+
terminationGracePeriodSeconds: {{ .Values.parseable.highAvailability.ingestor.terminationGracePeriodSeconds | default 30 }}
6060
serviceAccountName: {{ include "parseable.serviceAccountName" . }}
6161
{{- with .Values.parseable.highAvailability.ingestor.nodeSelector }}
6262
nodeSelector:

helm/templates/querier-statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
{{- .Values.parseable.podLabels | toYaml | nindent 8 }}
3838
{{- include "parseable.querierLabelsSelector" . | nindent 8 }}
3939
spec:
40-
terminationGracePeriodSeconds: 10
40+
terminationGracePeriodSeconds: {{ .Values.parseable.terminationGracePeriodSeconds | default 30 }}
4141
serviceAccountName: {{ include "parseable.serviceAccountName" . }}
4242
{{- with .Values.parseable.toleration }}
4343
tolerations:

helm/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ parseable:
2828
app: parseable
2929
component: ingestor
3030
count: 3
31+
terminationGracePeriodSeconds: 30
3132
env:
3233
RUST_LOG: warn
3334
## Use this endpoint to send events to ingestors
@@ -50,6 +51,7 @@ parseable:
5051
## Add environment variables to the Parseable Deployment
5152
env:
5253
RUST_LOG: warn
54+
terminationGracePeriodSeconds: 30
5355
## Enable to create a log stream and then add retention configuration
5456
## for that log stream
5557
# logstream:

0 commit comments

Comments
 (0)