Persist mcp token

This commit is contained in:
Ian Keane 2026-08-22 18:40:28 -04:00
parent 3f540c2b5f
commit f8a84f2cee

View file

@ -25,7 +25,7 @@ spec:
- http://forgejo-mcp.mcp.svc.cluster.local
env:
- name: DATA_PATH
value: /tmp/data
value: /data
envFrom:
- secretRef:
name: mcp-auth-proxy-secrets
@ -34,9 +34,15 @@ spec:
volumeMounts:
- name: tmp
mountPath: /tmp
- name: data
mountPath: /data
volumes:
- name: tmp
emptyDir: {}
- name: data
hostPath:
path: /var/local/appdata/mcp-auth-proxy
type: DirectoryOrCreate
---
apiVersion: v1
kind: Service