summaryrefslogtreecommitdiffstats
path: root/kubernetes/sdc
diff options
context:
space:
mode:
authorBorislavG <Borislav.Glozman@amdocs.com>2017-09-06 15:12:46 +0300
committerBorislav Glozman <Borislav.Glozman@amdocs.com>2017-09-06 19:55:04 +0000
commit66a9a5c4a387974e81b210fc9fa0024239582027 (patch)
tree925467a86e502eaa2cff5d8a4238ec79798137f9 /kubernetes/sdc
parent449c79f95b84e406d0ad5a0a9fa1d5de4d65b55d (diff)
Persistent volumes for Database storage
Addition of persistent volumes for all DBs including persistence of policy mariadb (with initial configuration data) Change-Id: I029e724c3f8bba7fe3599b0955a4a3d213c08163 Issue-ID: OOM-268 Signed-off-by: BorislavG <Borislav.Glozman@amdocs.com>
Diffstat (limited to 'kubernetes/sdc')
-rw-r--r--kubernetes/sdc/templates/sdc-cs.yaml4
-rw-r--r--kubernetes/sdc/templates/sdc-pv-pvc.yaml30
2 files changed, 32 insertions, 2 deletions
diff --git a/kubernetes/sdc/templates/sdc-cs.yaml b/kubernetes/sdc/templates/sdc-cs.yaml
index b660c90d64..9021194968 100644
--- a/kubernetes/sdc/templates/sdc-cs.yaml
+++ b/kubernetes/sdc/templates/sdc-cs.yaml
@@ -73,8 +73,8 @@ spec:
periodSeconds: 10
volumes:
- name: sdc-sdc-cs-cs
- hostPath:
- path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdc/sdc-cs/CS
+ persistentVolumeClaim:
+ claimName: sdc-cs-db
- name: sdc-environments
hostPath:
path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdc/environments
diff --git a/kubernetes/sdc/templates/sdc-pv-pvc.yaml b/kubernetes/sdc/templates/sdc-pv-pvc.yaml
new file mode 100644
index 0000000000..41f85e9465
--- /dev/null
+++ b/kubernetes/sdc/templates/sdc-pv-pvc.yaml
@@ -0,0 +1,30 @@
+apiVersion: v1
+kind: PersistentVolume
+metadata:
+ name: sdc-cs-db
+ namespace: "{{ .Values.nsPrefix }}-sdc"
+ labels:
+ name: sdc-cs-db
+spec:
+ capacity:
+ storage: 2Gi
+ accessModes:
+ - ReadWriteMany
+ persistentVolumeReclaimPolicy: Retain
+ hostPath:
+ path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdc/sdc-cs/CS
+---
+kind: PersistentVolumeClaim
+apiVersion: v1
+metadata:
+ name: sdc-cs-db
+ namespace: "{{ .Values.nsPrefix }}-sdc"
+spec:
+ accessModes:
+ - ReadWriteMany
+ resources:
+ requests:
+ storage: 2Gi
+ selector:
+ matchLabels:
+ name: sdc-cs-db