Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pre 8.9.0 #123

Merged
merged 3 commits into from
Dec 28, 2022
Merged
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
18 changes: 10 additions & 8 deletions charts/core-dump-handler/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ sources:

type: application

version: v8.8.0
version: v8.9.0

appVersion: "v8.8.0"
appVersion: "v8.9.0"

icon: https://raw.githubusercontent.com/No9/core-dump-handler/master/assets/handle-with-care-svgrepo-com.svg

Expand All @@ -30,18 +30,20 @@ maintainers:
annotations:
artifacthub.io/changes: |
- kind: added
description: Parameterise the timeout for core dumps and compression time
description: Experimental event file creation
links:
- name: GitHub PR
url: https://github.com/IBM/core-dump-handler/pull/116
- kind: added
description: Disable zip compresssion to speed up core dump times
url: https://github.com/IBM/core-dump-handler/pull/122
- kind: fixed
description: Scheduler crashing due to updated depenendency
links:
- name: GitHub Issue
url: https://github.com/IBM/core-dump-handler/issues/120
- name: GitHub PR
url: https://github.com/IBM/core-dump-handler/pull/114
url: https://github.com/IBM/core-dump-handler/pull/121
artifacthub.io/images: |
- name: core-dump-handler
image: quay.io/icdh/core-dump-handler:v8.8.0
image: quay.io/icdh/core-dump-handler:v8.9.0
artifacthub.io/license: MIT
artifacthub.io/signKey: |
fingerprint: BED079E67FD431E45301B1C9949E671B46AC8A34
Expand Down
4 changes: 2 additions & 2 deletions charts/core-dump-handler/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ spec:
- name: COMP_COMPRESSION
value: {{ .Values.composer.compression | quote }}
- name: COMP_CORE_EVENTS
value: {{ .Values.composer.coreEvents }}
value: {{ .Values.composer.coreEvents | quote }}
- name: COMP_CORE_EVENT_DIR
value: {{ .Values.daemonset.eventDirectory }}
value: {{ .Values.daemonset.eventDirectory | quote }}
- name: DEPLOY_CRIO_CONFIG
value: {{ .Values.daemonset.deployCrioConfig | quote }}
- name: CRIO_ENDPOINT
Expand Down
6 changes: 3 additions & 3 deletions charts/core-dump-handler/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ replicaCount: 1
image:
registry: quay.io
repository: icdh/core-dump-handler
tag: scheduler-fix
tag: v8.9.0
pullPolicy: Always
pullSecrets: []
request_mem: "64Mi"
Expand Down Expand Up @@ -44,8 +44,8 @@ daemonset:
suidDumpable: 2
vendor: default
# interval: 60000
schedule: "1/1 * * * * *"
# useINotify: true
# schedule: "1/1 * * * * *"
useINotify: true
deployCrioConfig: false
includeCrioExe: false
# S3 access
Expand Down