Skip to content

Commit

Permalink
Merge pull request #80 from vladislavtomenko/feat/progressDeadlineSec…
Browse files Browse the repository at this point in the history
…onds

feat: Made progressDeadlineSeconds configurable in deployments
  • Loading branch information
r-emelyanov-nixys committed Dec 26, 2024
2 parents cdadb79 + 1f95aa3 commit 4a0232c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.8.3 - December 26, 2024
* feature: Made `progressDeadlineSeconds` configurable in deployments

## 2.8.2 - December 09, 2024
* feature: Implemented support for SealedSecrets ([#77](https://github.com/nixys/nxs-universal-chart/issues/77))
* feature: Added cronjob suspend parameter
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ the parameters that can be configured during installation. To check deployment e
| `annotations` | Extra annotations for deployment | `{}` |
| `replicas` | Deployment replicas count | `1` |
| `strategy` | Deployment strategy | `{}` |
| `progressDeadlineSeconds` | The maximum time in seconds for a deployment to make progress before it is considered failed | `600` |
| `extraSelectorLabels` | Extra selectorLabels for deployment | `{}` |
| `podLabels` | Extra pod labels for deployment | `{}` |
| `podAnnotations` | Extra pod annotations for deployment | `{}` |
Expand Down
1 change: 1 addition & 0 deletions templates/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ spec:
{{- with .strategy }}
strategy: {{- include "helpers.tplvalues.render" (dict "value" . "context" $) | nindent 4 }}
{{- end }}
progressDeadlineSeconds: {{ .progressDeadlineSeconds | default 600 }}
selector:
matchLabels:
{{- include "helpers.app.selectorLabels" $ | nindent 6 }}
Expand Down

0 comments on commit 4a0232c

Please sign in to comment.