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
|
- name: fetch-mcp
|
||||||
image: "{{ .Values.mcp.sidecars.fetch.image.repository }}:{{ .Values.mcp.sidecars.fetch.image.tag }}"
|
image: "{{ .Values.mcp.sidecars.fetch.image.repository }}:{{ .Values.mcp.sidecars.fetch.image.tag }}"
|
||||||
imagePullPolicy: Always
|
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:
|
ports:
|
||||||
- name: fetch
|
- name: fetch
|
||||||
containerPort: {{ .Values.mcp.sidecars.fetch.port }}
|
containerPort: {{ .Values.mcp.sidecars.fetch.port }}
|
||||||
@@ -191,7 +191,7 @@ spec:
|
|||||||
- name: sequentialthinking-mcp
|
- name: sequentialthinking-mcp
|
||||||
image: "{{ .Values.mcp.sidecars.sequentialthinking.image.repository }}:{{ .Values.mcp.sidecars.sequentialthinking.image.tag }}"
|
image: "{{ .Values.mcp.sidecars.sequentialthinking.image.repository }}:{{ .Values.mcp.sidecars.sequentialthinking.image.tag }}"
|
||||||
imagePullPolicy: Always
|
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:
|
ports:
|
||||||
- name: seqthinking
|
- name: seqthinking
|
||||||
containerPort: {{ .Values.mcp.sidecars.sequentialthinking.port }}
|
containerPort: {{ .Values.mcp.sidecars.sequentialthinking.port }}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
"title": "Dev Container Helm Chart Values Schema",
|
"title": "Dev Container Helm Chart Values Schema",
|
||||||
"description": "Schema for validating values.yaml in the Dev Container Helm chart",
|
"description": "Schema for validating values.yaml in the Dev Container Helm chart",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
"additionalProperties": true,
|
||||||
"properties": {
|
"properties": {
|
||||||
"name": {
|
"name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|||||||
+4
-4
@@ -112,8 +112,8 @@ mcp:
|
|||||||
fetch:
|
fetch:
|
||||||
enabled: true
|
enabled: true
|
||||||
image:
|
image:
|
||||||
repository: mcp/fetch
|
repository: node
|
||||||
tag: latest
|
tag: 22-slim
|
||||||
port: 8082
|
port: 8082
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
@@ -127,8 +127,8 @@ mcp:
|
|||||||
sequentialthinking:
|
sequentialthinking:
|
||||||
enabled: true
|
enabled: true
|
||||||
image:
|
image:
|
||||||
repository: mcp/sequentialthinking
|
repository: node
|
||||||
tag: latest
|
tag: 22-slim
|
||||||
port: 8083
|
port: 8083
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
|
|||||||
Reference in New Issue
Block a user