mirror of
https://github.com/shadoll/redmine-mcp.git
synced 2026-08-28 03:27:56 +00:00
feat: add Bearer token authentication support for MCP
This commit is contained in:
@@ -9,4 +9,7 @@ type: Opaque
|
||||
stringData:
|
||||
REDMINE_URL: {{ .Values.redmine.url | required "redmine.url is required" | quote }}
|
||||
REDMINE_API_KEY: {{ .Values.redmine.apiKey | required "redmine.apiKey is required" | quote }}
|
||||
{{- if .Values.auth.token }}
|
||||
MCP_AUTH_TOKEN: {{ .Values.auth.token | quote }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
@@ -12,6 +12,10 @@ redmine:
|
||||
# -- Or reference an existing Secret with keys REDMINE_URL and REDMINE_API_KEY
|
||||
existingSecret: ""
|
||||
|
||||
auth:
|
||||
# Bearer token for HTTP transport (leave empty to disable auth)
|
||||
token: ""
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
port: 8000
|
||||
|
||||
Reference in New Issue
Block a user