diff options
author | jmac <james.macnider@amdocs.com> | 2018-04-26 14:26:55 +0000 |
---|---|---|
committer | jmac <james.macnider@amdocs.com> | 2018-05-02 14:25:53 +0000 |
commit | 8d6dc96d5cdc582b236ba4c6a76ece023094f55c (patch) | |
tree | 36533de1f4cfc608c55d0fc6cae7a2f3bd77d397 /kubernetes/sdnc/values.yaml | |
parent | c72aa028fcfd48a7f6674eb17fc9e7454184be2e (diff) |
Add PV for SDN-C MD-DAL data exports
The path '/opt/opendaylight/current/daexim' is now mapped to a persistent
volume that will survive pod restarts and destruction. A separate PV is
created for each SDN-C instance with the same ordinal as the corresponding
sdnc pod.
Change-Id: Ib5373fc2ae25b70992ff69e78571106f37af72e4
Signed-off-by: jmac <james.macnider@amdocs.com>
Issue-ID: SDNC-223
Diffstat (limited to 'kubernetes/sdnc/values.yaml')
-rw-r--r-- | kubernetes/sdnc/values.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/kubernetes/sdnc/values.yaml b/kubernetes/sdnc/values.yaml index e3cd8ae4ed..2603cd9fca 100644 --- a/kubernetes/sdnc/values.yaml +++ b/kubernetes/sdnc/values.yaml @@ -142,6 +142,28 @@ service: geoNodePort5: 65 geoNodePort6: 66 +## Persist data to a persitent volume +persistence: + enabled: true + + ## A manually managed Persistent Volume and Claim + ## Requires persistence.enabled: true + ## If defined, PVC must be created manually before volume will be bound + # existingClaim: + volumeReclaimPolicy: Retain + + ## database data Persistent Volume Storage Class + ## If defined, storageClassName: <storageClass> + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + accessMode: ReadWriteOnce + size: 1Gi + mountPath: /dockerdata-nfs + mountSubPath: sdnc/mdsal + mdsalPath: /opt/opendaylight/current/daexim + ingress: enabled: false |