Storage sizes can now be configured. Due to limitations of yaml/load-as-edn volumes.yaml was split into datavolume.yaml and rootvolume.yaml. This way, we are able to follow volume size recommendations described in jira. Valid config was updated. Tests were updated.
15 lines
No EOL
264 B
YAML
15 lines
No EOL
264 B
YAML
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: gitea-data-pvc
|
|
namespace: default
|
|
labels:
|
|
app: gitea
|
|
spec:
|
|
storageClassName: local-path
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: DATASTORAGESIZE
|
|
|