Skip to content

Commit

Permalink
Merge pull request #597 from Sonika-Prakash-ML/SNP-7935
Browse files Browse the repository at this point in the history
Snp 7935 merge to master
  • Loading branch information
Sonika-Prakash-ML authored Oct 11, 2023
2 parents 9e0d8a7 + b0d8782 commit 8a82234
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/sf-archival/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ dependencies:
condition: global.secrets.minio.enable
description: A Helm chart for Kubernetes
name: sf-archival
version: 2.0.101
version: 2.0.102
2 changes: 1 addition & 1 deletion charts/sf-archival/charts/compaction-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Kubernetes
name: compaction-controller
version: 0.1.1
version: 0.1.2
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ data:
"maxRunning": {{ .Values.maxSimultaneousRun }},
"maxAttempts": {{ .Values.maxAttempts }},
"pendingStateTolerationHours": {{ .Values.maxPendingHours }},
"runningStateTolerationHours": {{ .Values.maxRunningHours }}
"runningStateTolerationHours": {{ .Values.maxRunningHours }},
"compactedStateTolerationHours": {{ .Values.maxCompactedHours }}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ log-archival:
maxAttempts: 2
maxPendingHours: 1
maxRunningHours: 3
maxCompactedHours: 1
maxSimultaneousRun: 1
nameOverride: ''
nodeSelector: {}
Expand Down
1 change: 1 addition & 0 deletions charts/sf-archival/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ dataset-controller:
compaction-controller:
maxRunningHours: 3 # Max hours a compaction job is allowed to run for
maxPendingHours: 1 # Max hours a compaction job is allowed to stay in pending state for
maxCompactedHours: 1 # Max hours a compaction job is allowed to stay in compacted state for
maxSimultaneousRun: 1 # Max number of compaction jobs that can run parallely
maxAttempts: 2 # Max number of times a compaction job will be executed in case of failures etc.
schedules:
Expand Down

0 comments on commit 8a82234

Please sign in to comment.