Skip to content

Commit 1978a62

Browse files
feat(caraml-store): Add topology spread constraints field to caraml-serving deployment (#440)
1 parent eb74365 commit 1978a62

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

charts/caraml-store/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ maintainers:
2020
2121
name: caraml-dev
2222
name: caraml-store
23-
version: 0.1.18
23+
version: 0.1.19

charts/caraml-store/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# caraml-store
22

3-
![Version: 0.1.18](https://img.shields.io/badge/Version-0.1.18-informational?style=flat-square) ![AppVersion: 0.1.3](https://img.shields.io/badge/AppVersion-0.1.3-informational?style=flat-square)
3+
![Version: 0.1.19](https://img.shields.io/badge/Version-0.1.19-informational?style=flat-square) ![AppVersion: 0.1.3](https://img.shields.io/badge/AppVersion-0.1.3-informational?style=flat-square)
44

55
CaraML store registry: Feature registry for CaraML store.
66

@@ -114,6 +114,7 @@ CaraML store registry: Feature registry for CaraML store.
114114
| serving.startupProbe.timeoutSeconds | int | `1` | When the startup probe times out |
115115
| serving.strategy | object | `{}` | Strategy used to replace old Pods by new ones. .spec.strategy.type can be "Recreate" or "RollingUpdate". "RollingUpdate" is the default value. |
116116
| serving.tolerations | list | `[]` | |
117+
| serving.topologySpreadConstraints | list | `[]` | |
117118

118119
----------------------------------------------
119120
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)

charts/caraml-store/templates/serving/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,8 @@ spec:
144144
tolerations:
145145
{{- toYaml . | nindent 8 }}
146146
{{- end }}
147+
{{- with .Values.serving.topologySpreadConstraints }}
148+
topologySpreadConstraints:
149+
{{- toYaml . | nindent 8 }}
150+
{{- end }}
147151
{{- end }}

charts/caraml-store/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,8 @@ serving:
202202

203203
tolerations: []
204204

205+
topologySpreadConstraints: []
206+
205207
affinity: {}
206208

207209
postgresql:

0 commit comments

Comments
 (0)