mirror of
https://github.com/codex-storage/bittorrent-benchmarks.git
synced 2025-02-07 00:34:52 +00:00
26 lines
488 B
YAML
26 lines
488 B
YAML
# We need a persistent volume for Vector to collec the logs, which will then be accessible
|
|
# to the log parser.
|
|
|
|
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: codex-workflow-logs-pv
|
|
spec:
|
|
capacity:
|
|
storage: 10Gi
|
|
accessModes:
|
|
- ReadWriteMany
|
|
hostPath:
|
|
path: /mnt/codex-workflow-logs
|
|
---
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: codex-workflow-logs-pvc
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteMany
|
|
resources:
|
|
requests:
|
|
storage: 10Gi
|