From 2ee28a5a7a82116e1854d92713a315490c9f259b Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Fri, 15 Jan 2021 16:39:50 -0500 Subject: [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 Change-Id: I6b068c7a7bce294f94f9697a34027010bb5bfe8f --- kubernetes/sdnc/values.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'kubernetes/sdnc/values.yaml') diff --git a/kubernetes/sdnc/values.yaml b/kubernetes/sdnc/values.yaml index cb1cde20a6..0bd8abe88e 100644 --- a/kubernetes/sdnc/values.yaml +++ b/kubernetes/sdnc/values.yaml @@ -471,7 +471,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 -- cgit 1.2.3-korg