Skip to content

Commit

Permalink
add failedJobsHistoryLimit kubecost (#546)
Browse files Browse the repository at this point in the history
  • Loading branch information
nyambati authored Nov 14, 2023
1 parent af6262f commit 83f7092
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stable/kubecost-reports-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: |
if you are using old installation please use v1 chart
home: https://www.kubecost.com
type: application
version: 2.0.2
version: 2.0.3
appVersion: "2.0.0"
maintainers:
- name: nyambati
Expand Down
3 changes: 2 additions & 1 deletion stable/kubecost-reports-exporter/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# kubecost-reports-exporter

![Version: 2.0.2](https://img.shields.io/badge/Version-2.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.0](https://img.shields.io/badge/AppVersion-2.0.0-informational?style=flat-square)
![Version: 2.0.3](https://img.shields.io/badge/Version-2.0.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.0](https://img.shields.io/badge/AppVersion-2.0.0-informational?style=flat-square)

Helm chart for exporting kubernetes cost reports to AWS s3 bucket.
N/B We have updated chart to use V2 scripts using allocations and assets api.
Expand Down Expand Up @@ -51,6 +51,7 @@ helm install my-release deliveryhero/kubecost-reports-exporter -f values.yaml
| affinity | object | `{}` | |
| concurrencyPolicy | string | `"Forbid"` | |
| env | object | `{}` | Extra environment variables |
| failedJobsHistoryLimit | int | `1` | |
| fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"thomasnyambati/kubecost-reports-exporter"` | The container image to use |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ metadata:
spec:
schedule: {{ $.Values.schedule | quote }}
successfulJobsHistoryLimit: {{ $.Values.successfulJobsHistoryLimit }}
failedJobsHistoryLimit: {{ $.Values.failedJobsHistoryLimit }}
concurrencyPolicy: {{ $.Values.concurrencyPolicy }}
jobTemplate:
spec:
Expand Down
1 change: 1 addition & 0 deletions stable/kubecost-reports-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
schedule: "0 * * * *"
restartPolicy: OnFailure
successfulJobsHistoryLimit: 1
failedJobsHistoryLimit: 1
concurrencyPolicy: Forbid

image:
Expand Down

0 comments on commit 83f7092

Please sign in to comment.