mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-20 13:57:29 +00:00
- Update container image to ghcr.io/homarr-labs/homarr:v1.68.0 - Change namespace from services to homarr across deployment, service, and pvc - Set volume mount path to /appdata and storage capacity to 2Gi with local-path - Inject OIDC environment variables for SSO authentication Build: 0 jobs, 0 errors
14 lines
213 B
YAML
14 lines
213 B
YAML
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: homarr-data
|
|
namespace: homarr
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: 2Gi
|
|
storageClassName: local-path
|
|
|
|
|