From a1c5acc1c2f7465a55c7c124b9e60e00a3325115 Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Wed, 29 Oct 2025 01:17:51 +0100 Subject: [PATCH] feat: Initialize helm chart --- helm/nextcloud-mcp-server/Chart.yaml | 23 ++ .../templates/_helpers.tpl | 113 ++++++++ .../templates/deployment.yaml | 192 ++++++++++++++ helm/nextcloud-mcp-server/templates/hpa.yaml | 32 +++ .../templates/ingress.yaml | 61 +++++ helm/nextcloud-mcp-server/templates/pvc.yaml | 17 ++ .../templates/secret.yaml | 29 +++ .../templates/service.yaml | 19 ++ .../templates/serviceaccount.yaml | 13 + helm/nextcloud-mcp-server/values.yaml | 245 ++++++++++++++++++ 10 files changed, 744 insertions(+) create mode 100644 helm/nextcloud-mcp-server/Chart.yaml create mode 100644 helm/nextcloud-mcp-server/templates/_helpers.tpl create mode 100644 helm/nextcloud-mcp-server/templates/deployment.yaml create mode 100644 helm/nextcloud-mcp-server/templates/hpa.yaml create mode 100644 helm/nextcloud-mcp-server/templates/ingress.yaml create mode 100644 helm/nextcloud-mcp-server/templates/pvc.yaml create mode 100644 helm/nextcloud-mcp-server/templates/secret.yaml create mode 100644 helm/nextcloud-mcp-server/templates/service.yaml create mode 100644 helm/nextcloud-mcp-server/templates/serviceaccount.yaml create mode 100644 helm/nextcloud-mcp-server/values.yaml diff --git a/helm/nextcloud-mcp-server/Chart.yaml b/helm/nextcloud-mcp-server/Chart.yaml new file mode 100644 index 0000000..d17a03d --- /dev/null +++ b/helm/nextcloud-mcp-server/Chart.yaml @@ -0,0 +1,23 @@ +apiVersion: v2 +name: nextcloud-mcp-server +description: A Helm chart for Nextcloud MCP Server - enables AI assistants to interact with Nextcloud +type: application +version: 0.1.0 +appVersion: "0.21.0" +keywords: + - nextcloud + - mcp + - model-context-protocol + - llm + - ai + - claude + - webdav + - caldav + - carddav +maintainers: + - name: Chris Coutinho + email: chris@coutinho.io +home: https://github.com/cbcoutinho/nextcloud-mcp-server +sources: + - https://github.com/cbcoutinho/nextcloud-mcp-server +icon: https://raw.githubusercontent.com/nextcloud/server/master/core/img/logo/logo.svg diff --git a/helm/nextcloud-mcp-server/templates/_helpers.tpl b/helm/nextcloud-mcp-server/templates/_helpers.tpl new file mode 100644 index 0000000..3efacaf --- /dev/null +++ b/helm/nextcloud-mcp-server/templates/_helpers.tpl @@ -0,0 +1,113 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "nextcloud-mcp-server.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "nextcloud-mcp-server.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "nextcloud-mcp-server.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "nextcloud-mcp-server.labels" -}} +helm.sh/chart: {{ include "nextcloud-mcp-server.chart" . }} +{{ include "nextcloud-mcp-server.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "nextcloud-mcp-server.selectorLabels" -}} +app.kubernetes.io/name: {{ include "nextcloud-mcp-server.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "nextcloud-mcp-server.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "nextcloud-mcp-server.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} + +{{/* +Create the name of the secret to use for basic auth +*/}} +{{- define "nextcloud-mcp-server.basicAuthSecretName" -}} +{{- if .Values.auth.basic.existingSecret }} +{{- .Values.auth.basic.existingSecret }} +{{- else }} +{{- include "nextcloud-mcp-server.fullname" . }}-basic-auth +{{- end }} +{{- end }} + +{{/* +Create the name of the secret to use for OAuth +*/}} +{{- define "nextcloud-mcp-server.oauthSecretName" -}} +{{- if .Values.auth.oauth.existingSecret }} +{{- .Values.auth.oauth.existingSecret }} +{{- else }} +{{- include "nextcloud-mcp-server.fullname" . }}-oauth +{{- end }} +{{- end }} + +{{/* +Create the name of the PVC to use for OAuth storage +*/}} +{{- define "nextcloud-mcp-server.oauthPvcName" -}} +{{- if .Values.auth.oauth.persistence.existingClaim }} +{{- .Values.auth.oauth.persistence.existingClaim }} +{{- else }} +{{- include "nextcloud-mcp-server.fullname" . }}-oauth-storage +{{- end }} +{{- end }} + +{{/* +Return the appropriate MCP server port based on auth mode +*/}} +{{- define "nextcloud-mcp-server.port" -}} +{{- if eq .Values.auth.mode "oauth" }} +{{- .Values.auth.oauth.port }} +{{- else }} +{{- .Values.mcp.port }} +{{- end }} +{{- end }} + +{{/* +Return the image tag +*/}} +{{- define "nextcloud-mcp-server.imageTag" -}} +{{- .Values.image.tag | default .Chart.AppVersion }} +{{- end }} diff --git a/helm/nextcloud-mcp-server/templates/deployment.yaml b/helm/nextcloud-mcp-server/templates/deployment.yaml new file mode 100644 index 0000000..c14f034 --- /dev/null +++ b/helm/nextcloud-mcp-server/templates/deployment.yaml @@ -0,0 +1,192 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "nextcloud-mcp-server.fullname" . }} + labels: + {{- include "nextcloud-mcp-server.labels" . | nindent 4 }} +spec: + {{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} + {{- end }} + selector: + matchLabels: + {{- include "nextcloud-mcp-server.selectorLabels" . | nindent 6 }} + template: + metadata: + annotations: + checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }} + checksum/secret: {{ include (print $.Template.BasePath "/secret.yaml") . | sha256sum }} + {{- with .Values.podAnnotations }} + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "nextcloud-mcp-server.labels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "nextcloud-mcp-server.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + {{- with .Values.initContainers }} + initContainers: + {{- toYaml . | nindent 8 }} + {{- end }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ include "nextcloud-mcp-server.imageTag" . }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + args: + - "--host" + - "0.0.0.0" + - "--transport" + - "{{ .Values.mcp.transport }}" + {{- if eq .Values.auth.mode "oauth" }} + - "--oauth" + - "--port" + - "{{ .Values.auth.oauth.port }}" + - "--oauth-token-type" + - "{{ .Values.auth.oauth.tokenType }}" + {{- end }} + ports: + - name: http + containerPort: {{ include "nextcloud-mcp-server.port" . }} + protocol: TCP + env: + # Nextcloud connection + - name: NEXTCLOUD_HOST + value: {{ .Values.nextcloud.host | quote }} + {{- if eq .Values.auth.mode "basic" }} + # Basic auth mode + - name: NEXTCLOUD_USERNAME + valueFrom: + secretKeyRef: + name: {{ include "nextcloud-mcp-server.basicAuthSecretName" . }} + key: {{ .Values.auth.basic.usernameKey }} + - name: NEXTCLOUD_PASSWORD + valueFrom: + secretKeyRef: + name: {{ include "nextcloud-mcp-server.basicAuthSecretName" . }} + key: {{ .Values.auth.basic.passwordKey }} + {{- else if eq .Values.auth.mode "oauth" }} + # OAuth mode + - name: NEXTCLOUD_MCP_SERVER_URL + value: {{ .Values.nextcloud.mcpServerUrl | quote }} + - name: NEXTCLOUD_PUBLIC_ISSUER_URL + value: {{ .Values.nextcloud.publicIssuerUrl | quote }} + - name: NEXTCLOUD_OIDC_CLIENT_STORAGE + value: "/app/.oauth/nextcloud_oauth_client.json" + - name: NEXTCLOUD_OIDC_SCOPES + value: {{ .Values.auth.oauth.scopes | quote }} + {{- if .Values.auth.oauth.clientId }} + - name: NEXTCLOUD_OIDC_CLIENT_ID + valueFrom: + secretKeyRef: + name: {{ include "nextcloud-mcp-server.oauthSecretName" . }} + key: {{ .Values.auth.oauth.clientIdKey }} + - name: NEXTCLOUD_OIDC_CLIENT_SECRET + valueFrom: + secretKeyRef: + name: {{ include "nextcloud-mcp-server.oauthSecretName" . }} + key: {{ .Values.auth.oauth.clientSecretKey }} + {{- end }} + {{- end }} + {{- if .Values.documentProcessing.enabled }} + # Document processing + - name: ENABLE_DOCUMENT_PROCESSING + value: {{ .Values.documentProcessing.enabled | quote }} + - name: DOCUMENT_PROCESSOR + value: {{ .Values.documentProcessing.defaultProcessor | quote }} + - name: PROGRESS_INTERVAL + value: {{ .Values.documentProcessing.progressInterval | quote }} + {{- if .Values.documentProcessing.unstructured.enabled }} + - name: ENABLE_UNSTRUCTURED + value: "true" + - name: UNSTRUCTURED_API_URL + value: {{ .Values.documentProcessing.unstructured.apiUrl | quote }} + - name: UNSTRUCTURED_TIMEOUT + value: {{ .Values.documentProcessing.unstructured.timeout | quote }} + - name: UNSTRUCTURED_STRATEGY + value: {{ .Values.documentProcessing.unstructured.strategy | quote }} + - name: UNSTRUCTURED_LANGUAGES + value: {{ .Values.documentProcessing.unstructured.languages | quote }} + {{- end }} + {{- if .Values.documentProcessing.tesseract.enabled }} + - name: ENABLE_TESSERACT + value: "true" + {{- if .Values.documentProcessing.tesseract.cmd }} + - name: TESSERACT_CMD + value: {{ .Values.documentProcessing.tesseract.cmd | quote }} + {{- end }} + - name: TESSERACT_LANG + value: {{ .Values.documentProcessing.tesseract.lang | quote }} + {{- end }} + {{- if .Values.documentProcessing.custom.enabled }} + - name: ENABLE_CUSTOM_PROCESSOR + value: "true" + - name: CUSTOM_PROCESSOR_NAME + value: {{ .Values.documentProcessing.custom.name | quote }} + - name: CUSTOM_PROCESSOR_URL + value: {{ .Values.documentProcessing.custom.url | quote }} + {{- if .Values.documentProcessing.custom.apiKey }} + - name: CUSTOM_PROCESSOR_API_KEY + value: {{ .Values.documentProcessing.custom.apiKey | quote }} + {{- end }} + - name: CUSTOM_PROCESSOR_TIMEOUT + value: {{ .Values.documentProcessing.custom.timeout | quote }} + - name: CUSTOM_PROCESSOR_TYPES + value: {{ .Values.documentProcessing.custom.types | quote }} + {{- end }} + {{- end }} + {{- with .Values.extraEnv }} + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.extraEnvFrom }} + envFrom: + {{- toYaml . | nindent 12 }} + {{- end }} + livenessProbe: + {{- toYaml .Values.livenessProbe | nindent 12 }} + readinessProbe: + {{- toYaml .Values.readinessProbe | nindent 12 }} + resources: + {{- toYaml .Values.resources | nindent 12 }} + volumeMounts: + - name: tmp + mountPath: /tmp + {{- if and (eq .Values.auth.mode "oauth") .Values.auth.oauth.persistence.enabled }} + - name: oauth-storage + mountPath: /app/.oauth + {{- end }} + {{- with .Values.volumeMounts }} + {{- toYaml . | nindent 12 }} + {{- end }} + volumes: + - name: tmp + emptyDir: {} + {{- if and (eq .Values.auth.mode "oauth") .Values.auth.oauth.persistence.enabled }} + - name: oauth-storage + persistentVolumeClaim: + claimName: {{ include "nextcloud-mcp-server.oauthPvcName" . }} + {{- end }} + {{- with .Values.volumes }} + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/helm/nextcloud-mcp-server/templates/hpa.yaml b/helm/nextcloud-mcp-server/templates/hpa.yaml new file mode 100644 index 0000000..260eae6 --- /dev/null +++ b/helm/nextcloud-mcp-server/templates/hpa.yaml @@ -0,0 +1,32 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "nextcloud-mcp-server.fullname" . }} + labels: + {{- include "nextcloud-mcp-server.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "nextcloud-mcp-server.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/helm/nextcloud-mcp-server/templates/ingress.yaml b/helm/nextcloud-mcp-server/templates/ingress.yaml new file mode 100644 index 0000000..fe38b94 --- /dev/null +++ b/helm/nextcloud-mcp-server/templates/ingress.yaml @@ -0,0 +1,61 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "nextcloud-mcp-server.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }} + {{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }} + {{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}} + {{- end }} +{{- end }} +{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1 +{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "nextcloud-mcp-server.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }} + ingressClassName: {{ .Values.ingress.className }} + {{- end }} + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ .path }} + {{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }} + pathType: {{ .pathType }} + {{- end }} + backend: + {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} +{{- end }} diff --git a/helm/nextcloud-mcp-server/templates/pvc.yaml b/helm/nextcloud-mcp-server/templates/pvc.yaml new file mode 100644 index 0000000..0d722cd --- /dev/null +++ b/helm/nextcloud-mcp-server/templates/pvc.yaml @@ -0,0 +1,17 @@ +{{- if and (eq .Values.auth.mode "oauth") .Values.auth.oauth.persistence.enabled (not .Values.auth.oauth.persistence.existingClaim) }} +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: {{ include "nextcloud-mcp-server.fullname" . }}-oauth-storage + labels: + {{- include "nextcloud-mcp-server.labels" . | nindent 4 }} +spec: + accessModes: + - {{ .Values.auth.oauth.persistence.accessMode }} + {{- if .Values.auth.oauth.persistence.storageClass }} + storageClassName: {{ .Values.auth.oauth.persistence.storageClass }} + {{- end }} + resources: + requests: + storage: {{ .Values.auth.oauth.persistence.size }} +{{- end }} diff --git a/helm/nextcloud-mcp-server/templates/secret.yaml b/helm/nextcloud-mcp-server/templates/secret.yaml new file mode 100644 index 0000000..2039fa3 --- /dev/null +++ b/helm/nextcloud-mcp-server/templates/secret.yaml @@ -0,0 +1,29 @@ +{{- if eq .Values.auth.mode "basic" }} +{{- if not .Values.auth.basic.existingSecret }} +apiVersion: v1 +kind: Secret +metadata: + name: {{ include "nextcloud-mcp-server.fullname" . }}-basic-auth + labels: + {{- include "nextcloud-mcp-server.labels" . | nindent 4 }} +type: Opaque +data: + {{ .Values.auth.basic.usernameKey }}: {{ .Values.auth.basic.username | b64enc | quote }} + {{ .Values.auth.basic.passwordKey }}: {{ .Values.auth.basic.password | b64enc | quote }} +{{- end }} +{{- end }} +--- +{{- if eq .Values.auth.mode "oauth" }} +{{- if and .Values.auth.oauth.clientId (not .Values.auth.oauth.existingSecret) }} +apiVersion: v1 +kind: Secret +metadata: + name: {{ include "nextcloud-mcp-server.fullname" . }}-oauth + labels: + {{- include "nextcloud-mcp-server.labels" . | nindent 4 }} +type: Opaque +data: + {{ .Values.auth.oauth.clientIdKey }}: {{ .Values.auth.oauth.clientId | b64enc | quote }} + {{ .Values.auth.oauth.clientSecretKey }}: {{ .Values.auth.oauth.clientSecret | b64enc | quote }} +{{- end }} +{{- end }} diff --git a/helm/nextcloud-mcp-server/templates/service.yaml b/helm/nextcloud-mcp-server/templates/service.yaml new file mode 100644 index 0000000..2f477ba --- /dev/null +++ b/helm/nextcloud-mcp-server/templates/service.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "nextcloud-mcp-server.fullname" . }} + labels: + {{- include "nextcloud-mcp-server.labels" . | nindent 4 }} + {{- with .Values.service.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "nextcloud-mcp-server.selectorLabels" . | nindent 4 }} diff --git a/helm/nextcloud-mcp-server/templates/serviceaccount.yaml b/helm/nextcloud-mcp-server/templates/serviceaccount.yaml new file mode 100644 index 0000000..e7c9701 --- /dev/null +++ b/helm/nextcloud-mcp-server/templates/serviceaccount.yaml @@ -0,0 +1,13 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "nextcloud-mcp-server.serviceAccountName" . }} + labels: + {{- include "nextcloud-mcp-server.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +automountServiceAccountToken: {{ .Values.serviceAccount.automount }} +{{- end }} diff --git a/helm/nextcloud-mcp-server/values.yaml b/helm/nextcloud-mcp-server/values.yaml new file mode 100644 index 0000000..6735f3c --- /dev/null +++ b/helm/nextcloud-mcp-server/values.yaml @@ -0,0 +1,245 @@ +# Default values for nextcloud-mcp-server +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +# Number of replicas +replicaCount: 1 + +image: + repository: ghcr.io/cbcoutinho/nextcloud-mcp-server + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +# Nextcloud connection settings +nextcloud: + # URL of your Nextcloud instance (required) + # Example: https://cloud.example.com + host: "" + + # MCP server URL for OAuth callbacks (only needed for OAuth mode) + # Example: https://mcp.example.com + mcpServerUrl: "" + + # Public issuer URL for OAuth (only needed for OAuth mode) + # Example: https://cloud.example.com + publicIssuerUrl: "" + +# Authentication configuration +# Choose either basic auth OR oauth (not both) +auth: + # Authentication mode: "basic" or "oauth" + # basic: Uses username/password (recommended for most users) + # oauth: Uses OAuth2/OIDC (experimental, requires patches) + mode: basic + + # Basic authentication settings + basic: + # Nextcloud username + username: "" + # Nextcloud password or app password (recommended) + password: "" + # Use existing secret instead of creating one + existingSecret: "" + # Keys in the existing secret + usernameKey: "username" + passwordKey: "password" + + # OAuth2/OIDC settings (experimental) + oauth: + # Port for OAuth MCP server (default: 8001) + port: 8001 + # OAuth token type: "jwt" or "opaque" + tokenType: "jwt" + # Pre-registered OAuth client ID (optional, will auto-register if not provided) + clientId: "" + # Pre-registered OAuth client secret (optional) + clientSecret: "" + # OAuth scopes to request (space-separated) + scopes: "openid profile email notes:read notes:write calendar:read calendar:write contacts:read contacts:write cookbook:read cookbook:write deck:read deck:write tables:read tables:write files:read files:write sharing:read sharing:write todo:read todo:write" + # Use existing secret for OAuth credentials + existingSecret: "" + # Keys in the existing secret + clientIdKey: "clientId" + clientSecretKey: "clientSecret" + # Persistent storage for OAuth client credentials + persistence: + enabled: true + # Storage class (leave empty for default) + storageClass: "" + accessMode: ReadWriteOnce + size: 100Mi + # Use existing PVC + existingClaim: "" + +# MCP server configuration +mcp: + # Transport mode (default: streamable-http for SSE) + transport: "streamable-http" + # Port for basic auth mode + port: 8000 + +# Document processing configuration (optional) +documentProcessing: + # Enable document processing (PDF, DOCX, images, etc.) + enabled: false + # Default processor: unstructured, tesseract, or custom + defaultProcessor: "unstructured" + # Progress reporting interval in seconds + progressInterval: 10 + + # Unstructured.io processor + unstructured: + enabled: false + # Unstructured API endpoint + apiUrl: "http://unstructured:8000" + # Request timeout in seconds + timeout: 120 + # Parsing strategy: auto, fast, or hi_res + strategy: "auto" + # OCR languages (comma-separated ISO 639-3 codes) + languages: "eng,deu" + + # Tesseract processor (local OCR) + tesseract: + enabled: false + # Path to tesseract executable (optional, auto-detected if in PATH) + cmd: "" + # OCR language (e.g., eng, deu, eng+deu for multiple) + lang: "eng" + + # Custom processor + custom: + enabled: false + # Unique name for your processor + name: "my_ocr" + # Custom processor API endpoint + url: "" + # Optional API key for authentication + apiKey: "" + # Request timeout in seconds + timeout: 60 + # Comma-separated MIME types your processor supports + types: "application/pdf,image/jpeg,image/png" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Automatically mount a ServiceAccount's API credentials? + automount: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} +podLabels: {} + +podSecurityContext: + fsGroup: 2000 + +securityContext: + capabilities: + drop: + - ALL + readOnlyRootFilesystem: true + runAsNonRoot: true + runAsUser: 1000 + +service: + type: ClusterIP + port: 8000 + # For OAuth mode, you may want to expose both ports + oauthPort: 8001 + annotations: {} + +ingress: + enabled: false + className: "" + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + # cert-manager.io/cluster-issuer: letsencrypt-prod + hosts: + - host: mcp.example.com + paths: + - path: / + pathType: Prefix + tls: [] + # - secretName: nextcloud-mcp-tls + # hosts: + # - mcp.example.com + +resources: + # We recommend setting resource requests and limits + limits: + cpu: 1000m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + +# Liveness probe configuration +livenessProbe: + tcpSocket: + port: http + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 3 + +# Readiness probe configuration +readinessProbe: + tcpSocket: + port: http + initialDelaySeconds: 10 + periodSeconds: 5 + timeoutSeconds: 3 + failureThreshold: 3 + +# Autoscaling configuration +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 10 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +# Additional volumes on the output Deployment definition. +volumes: [] +# - name: foo +# secret: +# secretName: mysecret +# optional: false + +# Additional volumeMounts on the output Deployment definition. +volumeMounts: [] +# - name: foo +# mountPath: "/etc/foo" +# readOnly: true + +nodeSelector: {} + +tolerations: [] + +affinity: {} + +# Init containers +initContainers: [] + +# Additional environment variables +extraEnv: [] +# - name: CUSTOM_VAR +# value: "custom_value" + +# Additional environment variables from ConfigMaps or Secrets +extraEnvFrom: [] +# - configMapRef: +# name: my-configmap +# - secretRef: +# name: my-secret