From 95f233f7ad4b13e65ade1e0683b36a47dcc83fbd Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Mon, 22 Jun 2026 11:20:08 -0700 Subject: [PATCH] feat(chart): add topologySpreadConstraints MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Issue: LFXV2-1167 Co-Authored-By: Claude Sonnet 4.6 Signed-off-by: Trevor Bramwell --- charts/lfx-v2-member-service/templates/deployment.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/charts/lfx-v2-member-service/templates/deployment.yaml b/charts/lfx-v2-member-service/templates/deployment.yaml index 50a37dc..f28d36e 100644 --- a/charts/lfx-v2-member-service/templates/deployment.yaml +++ b/charts/lfx-v2-member-service/templates/deployment.yaml @@ -19,6 +19,10 @@ spec: app: {{ .Chart.Name }} app.kubernetes.io/name: {{ .Chart.Name }} spec: + {{- with .Values.topologySpreadConstraints }} + topologySpreadConstraints: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: app image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"