File tree Expand file tree Collapse file tree 5 files changed +21
-3
lines changed
Expand file tree Collapse file tree 5 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 0.5.28
2+
3+ [ FEATURE] Add support for ` topologySpreadConstraints ` [ #747 ] ( https://github.com/WeblateOrg/helm/pull/771 )
4+ [ FEATURE] Add support for ` PodDisruptionBudget ` [ #727 ] ( https://github.com/WeblateOrg/helm/pull/727 )
5+
16## 0.5.27
27
38[ FEATURE] Add support for additional K8S resources [ #731 ] ( https://github.com/WeblateOrg/helm/pull/731 )
4- [ FEATURE] Add support for ` PodDisruptionBudget ` [ #727 ] ( https://github.com/WeblateOrg/helm/pull/727 )
59
610## 0.5.26
711
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ appVersion: 5.16.0.0
44description : Weblate is a free web-based translation management system.
55name : weblate
66type : application
7- version : 0.5.27
7+ version : 0.5.28
88home : https://weblate.org/
99icon : https://s.weblate.org/cdn/weblate.svg
1010maintainers :
Original file line number Diff line number Diff line change 11# weblate
22
3- ![ Version: 0.5.27 ] ( https://img.shields.io/badge/Version-0.5.27 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 5.16.0.0] ( https://img.shields.io/badge/AppVersion-5.16.0.0-informational?style=flat-square )
3+ ![ Version: 0.5.28 ] ( https://img.shields.io/badge/Version-0.5.28 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 5.16.0.0] ( https://img.shields.io/badge/AppVersion-5.16.0.0-informational?style=flat-square )
44
55Weblate is a free web-based translation management system.
66
@@ -128,4 +128,5 @@ $ helm install my-release weblate/weblate
128128| sitePrefix | string | ` "" ` | Site Prefix (ex: /weblate) |
129129| siteTitle | string | ` "Weblate" ` | |
130130| tolerations | list | ` [] ` | |
131+ | topologySpreadConstraints | list | ` [] ` | |
131132| updateStrategy | string | ` "Recreate" ` | |
Original file line number Diff line number Diff line change @@ -250,6 +250,10 @@ spec:
250250 nodeSelector :
251251 {{- toYaml . | nindent 8 }}
252252 {{- end }}
253+ {{- with .Values.topologySpreadConstraints }}
254+ topologySpreadConstraints :
255+ {{- toYaml . | nindent 8 }}
256+ {{- end }}
253257 {{- with .Values.affinity }}
254258 affinity :
255259 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -216,6 +216,15 @@ pdb:
216216# # Maximum unavailable instances
217217# maxUnavailable: ""
218218
219+ # # Topology spread constraints rely on node labels to identify the topology domain(s) that each Node is in
220+ topologySpreadConstraints : []
221+ # - maxSkew: 1
222+ # topologyKey: failure-domain.beta.kubernetes.io/zone
223+ # whenUnsatisfiable: DoNotSchedule
224+ # labelSelector:
225+ # matchLabels:
226+ # app.kubernetes.io/instance: weblate
227+
219228postgresql :
220229 global :
221230 security :
You can’t perform that action at this time.
0 commit comments