Skip to content
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
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 9 additions & 11 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.10.0
version: v9.0.0

appVersion: "v8.10.0"
appVersion: "v9.0.0"

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

Expand All @@ -30,25 +30,23 @@ maintainers:
annotations:
artifacthub.io/changes: |
- kind: fixed
description: Fix event sourcing setup in chart templates
description: Add more parameters to helm chart
links:
- name: GitHub PR
url: https://github.com/IBM/core-dump-handler/pull/127
url: https://github.com/IBM/core-dump-handler/pull/134
- kind: fixed
description: Downgrade to 0.31.0
description: Use error logger in timeout condition
links:
- name: GitHub Issue
url: https://github.com/IBM/core-dump-handler/issues/126
- name: GitHub PR
url: https://github.com/IBM/core-dump-handler/pull/128
url: https://github.com/IBM/core-dump-handler/pull/113
- kind: fixed
description: Handle pullSecrets inside daemonset.yaml
description: Add service account token secret
links:
- name: GitHub PR
url: https://github.com/IBM/core-dump-handler/pull/130
url: https://github.com/IBM/core-dump-handler/pull/160
artifacthub.io/images: |
- name: core-dump-handler
image: quay.io/icdh/core-dump-handler:v8.10.0
image: quay.io/icdh/core-dump-handler:v9.0.0
artifacthub.io/license: MIT
artifacthub.io/signKey: |
fingerprint: BED079E67FD431E45301B1C9949E671B46AC8A34
Expand Down
2 changes: 1 addition & 1 deletion 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: v8.10.0
tag: v9.0.0
pullPolicy: Always
pullSecrets: []
request_mem: "64Mi"
Expand Down
8 changes: 4 additions & 4 deletions core-dump-agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-dump-agent"
version = "8.9.0"
version = "9.0.0"
authors = ["Anthony Whalley <[email protected]>"]
edition = "2021"
resolver = "2"
Expand All @@ -9,12 +9,12 @@ resolver = "2"

[dependencies]
anyhow = "1.0.86"
dotenv = "0.15.0"
dotenv = "0.15.0"
env_logger = "0.11.5"
log = "0.4.22"
advisory-lock = "0.3.0"
tokio-cron-scheduler = "0.11.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread","fs"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] }
inotify = "0.10"
thiserror = "1.0.63"

Expand All @@ -35,4 +35,4 @@ version = "0.34.0"
version = "0.34.0"

[dev-dependencies]
fs_extra = "1.2"
fs_extra = "1.2"
4 changes: 2 additions & 2 deletions core-dump-composer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-dump-composer"
version = "8.9.0"
version = "9.0.0"
authors = ["Anthony Whalley <[email protected]>"]
edition = "2021"

Expand All @@ -11,7 +11,7 @@ clap = "3.2.22"
advisory-lock = "0.3.0"
uuid = { version = "1.10.0", features = ["serde", "v4"] }
zip = "0.6.6"
dotenv = "0.15.0"
dotenv = "0.15.0"
log = "0.4.22"
log4rs = "1.3.0"
anyhow = "1.0.86"
Expand Down
Loading