@@ -191,9 +191,9 @@ persistence:
191
191
# -- PVC Storage Request for Orthanc SQLite index
192
192
size : 1Gi
193
193
# -- Annotations for the PVC
194
- annotations :
194
+ annotations : {}
195
195
# -- Labels for the PVC
196
- labels :
196
+ labels : {}
197
197
storage :
198
198
# -- Enable Orthanc storage data persistence using PVC
199
199
enabled : false
@@ -206,9 +206,9 @@ persistence:
206
206
# -- PVC Storage Request for Orthanc storage
207
207
size : 1Gi
208
208
# -- Annotations for the PVC
209
- annotations :
209
+ annotations : {}
210
210
# -- Labels for the PVC
211
- labels :
211
+ labels : {}
212
212
213
213
# -- Use the CrunchyData PostgreSQL Operator to create a PostgreSQL database
214
214
crunchyPgo :
@@ -534,6 +534,18 @@ config:
534
534
# which can be configured by emptyDirs.temporaryDirectory.
535
535
TemporaryDirectory : /tmp/Orthanc
536
536
537
+ # -- Path to the directory that holds the heavyweight files (i.e. the
538
+ # -- raw DICOM instances).
539
+ # -- NOTE: a PersistentVolumeClaim can be created for this path by
540
+ # setting persistence.storage.enabled=true
541
+ StorageDirectory : /var/lib/orthanc/storage
542
+ # -- Path to the directory that holds the SQLite index (if unset, the
543
+ # -- value of StorageDirectory is used). This index could be stored on
544
+ # -- a RAM-drive or a SSD device for performance reasons.
545
+ # -- NOTE: a PersistentVolumeClaim can be created for this path by
546
+ # setting persistence.index.enabled=true
547
+ IndexDirectory : /var/lib/orthanc/index
548
+
537
549
metrics :
538
550
# -- Enables the Prometheus metrics endpoint of Orthanc.
539
551
# -- metrics.enabled is an alias for config.MetricsEnabled.
0 commit comments