fix(helm): allow additionalProperties in values schema to prevent Flux dropping variables and change sidecar container configs
This commit is contained in:
@@ -170,7 +170,7 @@ spec:
|
||||
- name: fetch-mcp
|
||||
image: "{{ .Values.mcp.sidecars.fetch.image.repository }}:{{ .Values.mcp.sidecars.fetch.image.tag }}"
|
||||
imagePullPolicy: Always
|
||||
command: ["fastmcp", "run", "--transport", "sse", "--host", "0.0.0.0", "--port", "{{ .Values.mcp.sidecars.fetch.port }}"]
|
||||
command: ["npx", "-y", "@modelcontextprotocol/server-fetch"]
|
||||
ports:
|
||||
- name: fetch
|
||||
containerPort: {{ .Values.mcp.sidecars.fetch.port }}
|
||||
@@ -191,7 +191,7 @@ spec:
|
||||
- name: sequentialthinking-mcp
|
||||
image: "{{ .Values.mcp.sidecars.sequentialthinking.image.repository }}:{{ .Values.mcp.sidecars.sequentialthinking.image.tag }}"
|
||||
imagePullPolicy: Always
|
||||
command: ["fastmcp", "run", "--transport", "sse", "--host", "0.0.0.0", "--port", "{{ .Values.mcp.sidecars.sequentialthinking.port }}"]
|
||||
command: ["npx", "-y", "@modelcontextprotocol/server-sequential-thinking"]
|
||||
ports:
|
||||
- name: seqthinking
|
||||
containerPort: {{ .Values.mcp.sidecars.sequentialthinking.port }}
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
"title": "Dev Container Helm Chart Values Schema",
|
||||
"description": "Schema for validating values.yaml in the Dev Container Helm chart",
|
||||
"type": "object",
|
||||
"additionalProperties": true,
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
|
||||
+4
-4
@@ -112,8 +112,8 @@ mcp:
|
||||
fetch:
|
||||
enabled: true
|
||||
image:
|
||||
repository: mcp/fetch
|
||||
tag: latest
|
||||
repository: node
|
||||
tag: 22-slim
|
||||
port: 8082
|
||||
resources:
|
||||
requests:
|
||||
@@ -127,8 +127,8 @@ mcp:
|
||||
sequentialthinking:
|
||||
enabled: true
|
||||
image:
|
||||
repository: mcp/sequentialthinking
|
||||
tag: latest
|
||||
repository: node
|
||||
tag: 22-slim
|
||||
port: 8083
|
||||
resources:
|
||||
requests:
|
||||
|
||||
Reference in New Issue
Block a user