Skip to content

Commit 5cb771f

Browse files
authored
Merge pull request #77 from IBM/pre-8.1.0
fix: format code and release config
2 parents 4c62604 + ce18fa8 commit 5cb771f

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

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.0.3
13+
version: v8.1.0
1414

15-
appVersion: "v8.0.3"
15+
appVersion: "v8.1.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 template quote
33+
description: Support for EKS gitops pipelines
3434
links:
3535
- name: Github PR
36-
url: https://github.com/IBM/core-dump-handler/pull/68
36+
url: https://github.com/IBM/core-dump-handler/pull/76
3737
- name: Github Issue
38-
url: https://github.com/IBM/core-dump-handler/issues/65
38+
url: https://github.com/IBM/core-dump-handler/issues/75
3939
artifacthub.io/images: |
4040
- name: core-dump-handler
41-
image: quay.io/repository/icdh/core-dump-handler:v8.0.3
41+
image: quay.io/repository/icdh/core-dump-handler:v8.1.0
4242
artifacthub.io/license: MIT
4343
artifacthub.io/signKey: |
4444
fingerprint: BED079E67FD431E45301B1C9949E671B46AC8A34

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

+6-5
Original file line numberDiff line numberDiff line change
@@ -362,11 +362,12 @@ fn get_bucket() -> Result<Bucket, anyhow::Error> {
362362
let credentials = if s3_access_key.is_empty() || s3_secret.is_empty() {
363363
Credentials::new(None, None, None, None, None)
364364
} else {
365-
Credentials::new(Some(s3_access_key.as_str()),
366-
Some(s3_secret.as_str()),
367-
None,
368-
None,
369-
None,
365+
Credentials::new(
366+
Some(s3_access_key.as_str()),
367+
Some(s3_secret.as_str()),
368+
None,
369+
None,
370+
None,
370371
)
371372
};
372373

0 commit comments

Comments
 (0)