diff options
author | Dan Timoney <dtimoney@att.com> | 2021-01-15 16:39:50 -0500 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-01-20 12:47:36 +0000 |
commit | 4d4f7acfdb3a59c303f0312a75569d9c7b10b3fb (patch) | |
tree | c703d0e4c79a21a0889d13c371f09c8d12b1c0e9 /kubernetes/sdnc/values.yaml | |
parent | f2cc30d314acdc5efdbee957416891a49b7ab799 (diff) |
[SDNC] Move ODL persistent data to pvc
In OpenDaylight, there are three types of data that we want to retain:
- exported backups (stored in /opt/opendaylight/daexim)
- journals (stored in /opt/opendaylight/journal)
- snapshots (stored in /opt/opendaylight/snapshots)
This change saves all 3 directories to the sdnc persistent
volume so that they are retained across restarts.
Issue-ID: SDNC-1455
Signed-off-by: Dan Timoney <dtimoney@att.com>
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: I6b068c7a7bce294f94f9697a34027010bb5bfe8f
(cherry picked from commit 2ee28a5a7a82116e1854d92713a315490c9f259b)
Diffstat (limited to 'kubernetes/sdnc/values.yaml')
-rw-r--r-- | kubernetes/sdnc/values.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kubernetes/sdnc/values.yaml b/kubernetes/sdnc/values.yaml index f710deb4c0..62ea644339 100644 --- a/kubernetes/sdnc/values.yaml +++ b/kubernetes/sdnc/values.yaml @@ -436,7 +436,10 @@ persistence: size: 1Gi mountPath: /dockerdata-nfs mountSubPath: sdnc/mdsal - mdsalPath: /opt/opendaylight/current/daexim + mdsalPath: /opt/opendaylight/mdsal + daeximPath: /opt/opendaylight/daexim + journalPath: /opt/opendaylight/journal + snapshotsPath: /opt/opendaylight/snapshots certpersistence: enabled: true |