From 4ebe5c4612c6397e3ebbed83b2dc992e3475b50e Mon Sep 17 00:00:00 2001 From: sHa Date: Sat, 18 Apr 2026 18:26:02 +0300 Subject: [PATCH] chore: Update version to 0.1.1 and add nodeSelector and tolerations to deployment configuration --- ha-mcp/Chart.yaml | 2 +- ha-mcp/templates/deployment.yaml | 8 ++++++++ ha-mcp/values.yaml | 4 ++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ha-mcp/Chart.yaml b/ha-mcp/Chart.yaml index 2a8d844..7127463 100644 --- a/ha-mcp/Chart.yaml +++ b/ha-mcp/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: ha-mcp description: Home Assistant MCP server Helm chart type: application -version: 0.1.0 +version: 0.1.1 appVersion: "7.1.0" annotations: version-source: github-release:homeassistant-ai/ha-mcp diff --git a/ha-mcp/templates/deployment.yaml b/ha-mcp/templates/deployment.yaml index 07072ca..923de88 100644 --- a/ha-mcp/templates/deployment.yaml +++ b/ha-mcp/templates/deployment.yaml @@ -23,6 +23,14 @@ spec: labels: app: {{ .Release.Name }} spec: + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: {{ .Chart.Name }} image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}" diff --git a/ha-mcp/values.yaml b/ha-mcp/values.yaml index 9fe532e..85f2db4 100644 --- a/ha-mcp/values.yaml +++ b/ha-mcp/values.yaml @@ -23,6 +23,10 @@ resources: cpu: "500m" memory: "512Mi" +nodeSelector: {} + +tolerations: [] + ingresses: {} # https: # host: ha.mcp.example.com