Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added helm-releases/parseable-2.8.3.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: parseable
description: Helm chart for Parseable OSS version. Columnar data lake platform - purpose built for observability
type: application
version: 2.8.2
version: 2.8.3
appVersion: "v2.8.0"
icon: "https://raw.githubusercontent.com/parseablehq/.github/main/images/logo.svg"

Expand Down
2 changes: 1 addition & 1 deletion helm/templates/ingestor-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec:
done
echo "Query service did not become ready in time. Exiting."
exit 1
terminationGracePeriodSeconds: 10
terminationGracePeriodSeconds: {{ .Values.parseable.highAvailability.ingestor.terminationGracePeriodSeconds | default 30 }}
serviceAccountName: {{ include "parseable.serviceAccountName" . }}
{{- with .Values.parseable.highAvailability.ingestor.nodeSelector }}
nodeSelector:
Expand Down
2 changes: 1 addition & 1 deletion helm/templates/querier-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
{{- .Values.parseable.podLabels | toYaml | nindent 8 }}
{{- include "parseable.querierLabelsSelector" . | nindent 8 }}
spec:
terminationGracePeriodSeconds: 10
terminationGracePeriodSeconds: {{ .Values.parseable.terminationGracePeriodSeconds | default 30 }}
serviceAccountName: {{ include "parseable.serviceAccountName" . }}
{{- with .Values.parseable.toleration }}
tolerations:
Expand Down
2 changes: 2 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ parseable:
app: parseable
component: ingestor
count: 3
terminationGracePeriodSeconds: 30
env:
RUST_LOG: warn
## Use this endpoint to send events to ingestors
Expand All @@ -50,6 +51,7 @@ parseable:
## Add environment variables to the Parseable Deployment
env:
RUST_LOG: warn
terminationGracePeriodSeconds: 30
## Enable to create a log stream and then add retention configuration
## for that log stream
# logstream:
Expand Down
Loading
Loading