Skip to content

Commit ae73574

Browse files
authored
Merge pull request #67 from IBM/pre-8.0.2
fix: template string
2 parents d0092ef + c9885dd commit ae73574

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

charts/core-dump-handler/Chart.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ sources:
1010

1111
type: application
1212

13-
version: v8.0.1
13+
version: v8.0.2
1414

15-
appVersion: "v8.0.1"
15+
appVersion: "v8.0.2"
1616

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

@@ -30,13 +30,13 @@ maintainers:
3030
annotations:
3131
artifacthub.io/changes: |
3232
- kind: fixed
33-
description: Change to default to iNotify
33+
description: Fix template quote
3434
links:
3535
- name: Github PR
36-
url: https://github.com/IBM/core-dump-handler/pull/64
36+
url: https://github.com/IBM/core-dump-handler/pull/67
3737
artifacthub.io/images: |
3838
- name: core-dump-handler
39-
image: quay.io/repository/icdh/core-dump-handler:v8.0.1
39+
image: quay.io/repository/icdh/core-dump-handler:v8.0.2
4040
artifacthub.io/license: MIT
4141
artifacthub.io/signKey: |
4242
fingerprint: BED079E67FD431E45301B1C9949E671B46AC8A34

charts/core-dump-handler/templates/daemonset.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
mountPropagation: Bidirectional
3333
env:
3434
- name: COMP_FILE_TEMPLATE
35-
# value: {{ .Values.composer.filenameTemplate }}
35+
value: {{ .Values.composer.filenameTemplate | quote }}
3636
- name: COMP_LOG_LENGTH
3737
value: {{ .Values.composer.logLength | quote }}
3838
- name: COMP_LOG_LEVEL

charts/core-dump-handler/values.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ replicaCount: 1
33
image:
44
registry: quay.io
55
repository: icdh/core-dump-handler
6-
tag: v8.0.1
6+
tag: v8.0.2
77
pullPolicy: Always
88
pullSecrets: []
99
request_mem: "64Mi"
@@ -24,8 +24,7 @@ composer:
2424
ignoreCrio: false
2525
crioImageCmd: "img"
2626
logLevel: "Warn"
27-
# Double curlies are required otherwise helm trys to parse the string
28-
filenameTemplate: "{{uuid}}-dump-{{timestamp}}-{{hostname}}-{{exe_name}}-{{pid}}-{{signal}}"
27+
filenameTemplate: "{uuid}-dump-{timestamp}-{hostname}-{exe_name}-{pid}-{signal}"
2928
logLength: 500
3029

3130
daemonset:

0 commit comments

Comments
 (0)