Skip to content

Commit

Permalink
add terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodS…
Browse files Browse the repository at this point in the history
…econds }} (#686)
  • Loading branch information
ekneg54 authored Oct 8, 2024
1 parent 0ac994f commit d00ca61
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@
* adds `desired_cluster_status` option to opensearch output to signal healthy cluster status
* initially run health checks on setup for every configured component
* make `imagePullPolicy` configurable for helm chart deployments
* make `terminationGracePeriodSeconds` configurable in helm chart values


### Improvements

* remove AutoRuleCorpusTester
* adds support for rust extension development
* adds prebuild wheels for architectures `x86_64` on `manylinux` and `musllinux` based linux platforms to releases
* adds prebuilt wheels for architectures `x86_64` on `manylinux` and `musllinux` based linux platforms to releases
* add manual how to use local images with minikube example setup to documentation
* move `Configuration` to top level of documentation
* add `CONTRIBUTING` file
Expand Down
2 changes: 1 addition & 1 deletion charts/logprep/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: "13.3.0"
version: "13.4.0"

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
1 change: 1 addition & 0 deletions charts/logprep/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ spec:
periodSeconds: 5
timeoutSeconds: 10
{{- end }}
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
volumes:
- name: logprep-temp
emptyDir:
Expand Down
4 changes: 4 additions & 0 deletions charts/logprep/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,7 @@ configurations:
# admin
# admin2
artifacts: []

# The termination grace period for the pod
# Defaults to 300 seconds to ensure that queues are drained before the pod is terminated
terminationGracePeriodSeconds: 300

0 comments on commit d00ca61

Please sign in to comment.