Skip to content

Commit 9ce5182

Browse files
authored
Merge pull request #82 from IBM/pre-8.2.0
Pre 8.2.0 fix: #81
2 parents 52c251d + e6834bb commit 9ce5182

File tree

7 files changed

+16
-10
lines changed

7 files changed

+16
-10
lines changed

Diff for: Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: charts/core-dump-handler/Chart.yaml

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

1111
type: application
1212

13-
version: v8.1.1
13+
version: v8.2.0
1414

15-
appVersion: "v8.1.1"
15+
appVersion: "v8.2.0"
1616

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

@@ -30,15 +30,15 @@ maintainers:
3030
annotations:
3131
artifacthub.io/changes: |
3232
- kind: fixed
33-
description: Fix for PV to PVC using claimRef
33+
description: Fix for big core files
3434
links:
3535
- name: Github PR
36-
url: https://github.com/IBM/core-dump-handler/pull/79
36+
url: https://github.com/IBM/core-dump-handler/pull/82
3737
- name: Github Issue
38-
url: https://github.com/IBM/core-dump-handler/issues/78
38+
url: https://github.com/IBM/core-dump-handler/issues/81
3939
artifacthub.io/images: |
4040
- name: core-dump-handler
41-
image: quay.io/repository/icdh/core-dump-handler:v8.1.1
41+
image: quay.io/repository/icdh/core-dump-handler:v8.2.0
4242
artifacthub.io/license: MIT
4343
artifacthub.io/signKey: |
4444
fingerprint: BED079E67FD431E45301B1C9949E671B46AC8A34

Diff for: charts/core-dump-handler/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ helm install core-dump-handler . --create-namespace --namespace observe \
4545
<tr>
4646
<td>Google</td><td>GKE COS</td><td><a href="values.gke-cos.yaml">values.gke-cos.yaml</a></td>
4747
</tr>
48+
<tr>
49+
<td>IBM</td><td>IKS</td><td><a href="values.ibm.yaml">values.ibm.yaml</a></td>
50+
</tr>
4851
<tr>
4952
<td>IBM</td><td>ROKS</td><td><a href="values.roks.yaml">values.roks.yaml</a></td>
5053
</tr>

Diff for: charts/core-dump-handler/values.ibm.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
daemonset:
2+
vendor: rhel7 # EKS EC2 images have an old libc=2.26

Diff for: charts/core-dump-handler/values.yaml

+1-1
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.1.1
6+
tag: v8.2.0
77
pullPolicy: Always
88
pullSecrets: []
99
request_mem: "64Mi"

Diff for: core-dump-composer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "core-dump-composer"
3-
version = "7.1.0"
3+
version = "8.2.0"
44
authors = ["Anthony Whalley <[email protected]>"]
55
edition = "2021"
66

Diff for: core-dump-composer/src/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ fn main() -> Result<(), anyhow::Error> {
7272
// Create the base zip file that we are going to put everything into
7373
let options = FileOptions::default()
7474
.compression_method(zip::CompressionMethod::Deflated)
75-
.unix_permissions(0o444);
75+
.unix_permissions(0o444)
76+
.large_file(true);
7677

7778
let file = match File::create(cc.get_zip_full_path()) {
7879
Ok(v) => v,

0 commit comments

Comments
 (0)