fix: Update helm chart variables
This commit is contained in:
@@ -95,15 +95,11 @@ Create the name of the PVC to use for OAuth storage
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
Return the appropriate MCP server port based on auth mode
|
Return the MCP server port
|
||||||
*/}}
|
*/}}
|
||||||
{{- define "nextcloud-mcp-server.port" -}}
|
{{- define "nextcloud-mcp-server.port" -}}
|
||||||
{{- if eq .Values.auth.mode "oauth" }}
|
|
||||||
{{- .Values.auth.oauth.port }}
|
|
||||||
{{- else }}
|
|
||||||
{{- .Values.mcp.port }}
|
{{- .Values.mcp.port }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
Return the image tag
|
Return the image tag
|
||||||
|
|||||||
@@ -61,8 +61,6 @@ auth:
|
|||||||
|
|
||||||
# OAuth2/OIDC settings (experimental)
|
# OAuth2/OIDC settings (experimental)
|
||||||
oauth:
|
oauth:
|
||||||
# Port for OAuth MCP server (default: 8001)
|
|
||||||
port: 8001
|
|
||||||
# OAuth token type: "jwt" or "opaque"
|
# OAuth token type: "jwt" or "opaque"
|
||||||
tokenType: "jwt"
|
tokenType: "jwt"
|
||||||
# Pre-registered OAuth client ID (optional, ignored if existingSecret is set)
|
# Pre-registered OAuth client ID (optional, ignored if existingSecret is set)
|
||||||
@@ -97,8 +95,11 @@ auth:
|
|||||||
mcp:
|
mcp:
|
||||||
# Transport mode (default: streamable-http for SSE)
|
# Transport mode (default: streamable-http for SSE)
|
||||||
transport: "streamable-http"
|
transport: "streamable-http"
|
||||||
# Port for basic auth mode
|
# Port for MCP server (both basic auth and OAuth modes)
|
||||||
port: 8000
|
port: 8000
|
||||||
|
# Additional command-line arguments to pass to nextcloud-mcp-server
|
||||||
|
# Example: ["--log-level", "debug", "--enable-app", "notes"]
|
||||||
|
extraArgs: []
|
||||||
|
|
||||||
# Document processing configuration (optional)
|
# Document processing configuration (optional)
|
||||||
documentProcessing:
|
documentProcessing:
|
||||||
|
|||||||
Reference in New Issue
Block a user