From 53985772af043377666ff942956565c33350fe57 Mon Sep 17 00:00:00 2001 From: Anthony Whalley Date: Wed, 28 Dec 2022 14:15:18 +0000 Subject: [PATCH 1/3] release: prepare configuration Signed-off-by: Anthony Whalley --- charts/core-dump-handler/Chart.yaml | 18 ++++++++++-------- charts/core-dump-handler/values.yaml | 2 +- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/charts/core-dump-handler/Chart.yaml b/charts/core-dump-handler/Chart.yaml index da2914a..16d3746 100644 --- a/charts/core-dump-handler/Chart.yaml +++ b/charts/core-dump-handler/Chart.yaml @@ -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 @@ -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 diff --git a/charts/core-dump-handler/values.yaml b/charts/core-dump-handler/values.yaml index ffeb880..49a24fe 100644 --- a/charts/core-dump-handler/values.yaml +++ b/charts/core-dump-handler/values.yaml @@ -3,7 +3,7 @@ replicaCount: 1 image: registry: quay.io repository: icdh/core-dump-handler - tag: scheduler-fix + tag: pre-8.9.0 pullPolicy: Always pullSecrets: [] request_mem: "64Mi" From 559d37716e3c1b699d6ace321024b135c4c8852b Mon Sep 17 00:00:00 2001 From: Anthony Whalley Date: Wed, 28 Dec 2022 14:16:19 +0000 Subject: [PATCH 2/3] fix: reset I notify Signed-off-by: Anthony Whalley --- charts/core-dump-handler/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/core-dump-handler/values.yaml b/charts/core-dump-handler/values.yaml index 49a24fe..8dd52b7 100644 --- a/charts/core-dump-handler/values.yaml +++ b/charts/core-dump-handler/values.yaml @@ -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 From cd550fa60426ab2473214ade88ef553c19458283 Mon Sep 17 00:00:00 2001 From: Anthony Whalley Date: Wed, 28 Dec 2022 18:08:01 +0000 Subject: [PATCH 3/3] fix: quote event config and bump release Signed-off-by: Anthony Whalley --- charts/core-dump-handler/templates/daemonset.yaml | 4 ++-- charts/core-dump-handler/values.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/core-dump-handler/templates/daemonset.yaml b/charts/core-dump-handler/templates/daemonset.yaml index a74c04a..aec0266 100644 --- a/charts/core-dump-handler/templates/daemonset.yaml +++ b/charts/core-dump-handler/templates/daemonset.yaml @@ -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 diff --git a/charts/core-dump-handler/values.yaml b/charts/core-dump-handler/values.yaml index 8dd52b7..2d3018c 100644 --- a/charts/core-dump-handler/values.yaml +++ b/charts/core-dump-handler/values.yaml @@ -3,7 +3,7 @@ replicaCount: 1 image: registry: quay.io repository: icdh/core-dump-handler - tag: pre-8.9.0 + tag: v8.9.0 pullPolicy: Always pullSecrets: [] request_mem: "64Mi"