diff options
author | BorislavG <Borislav.Glozman@amdocs.com> | 2017-09-06 15:12:46 +0300 |
---|---|---|
committer | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2017-09-06 19:55:04 +0000 |
commit | 66a9a5c4a387974e81b210fc9fa0024239582027 (patch) | |
tree | 925467a86e502eaa2cff5d8a4238ec79798137f9 /kubernetes/policy/templates/dep-maria.yaml | |
parent | 449c79f95b84e406d0ad5a0a9fa1d5de4d65b55d (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/policy/templates/dep-maria.yaml')
-rw-r--r-- | kubernetes/policy/templates/dep-maria.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kubernetes/policy/templates/dep-maria.yaml b/kubernetes/policy/templates/dep-maria.yaml index abbfdd8f4b..2b0e40eb4e 100644 --- a/kubernetes/policy/templates/dep-maria.yaml +++ b/kubernetes/policy/templates/dep-maria.yaml @@ -24,10 +24,17 @@ spec: name: mariadb ports: - containerPort: 3306 + volumeMounts: + - mountPath: /var/lib/mysql + name: policy-mariadb-data readinessProbe: tcpSocket: port: 3306 initialDelaySeconds: 5 periodSeconds: 10 + volumes: + - name: policy-mariadb-data + persistentVolumeClaim: + claimName: policy-db imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" |