63306d4f409bfecef3314029f42716a9cb4053b6
[oom.git] / kubernetes / policy / templates / dep-maria.yaml
1 apiVersion: extensions/v1beta1
2 kind: Deployment
3 metadata:
4   name: mariadb
5   namespace: {{ .Values.NS }}
6 spec:
7   replicas: 1
8   selector:
9     matchLabels:
10       app: mariadb
11   template:
12     metadata:
13       labels:
14         app: mariadb
15     spec:
16       hostname: mariadb
17       containers:
18       - command:
19         - /bin/bash
20         - -c
21         - exec bash /tmp/do-start.sh
22         image: {{ .Values.image.policyDb }}
23         imagePullPolicy: {{ .Values.pullPolicy }}
24         name: mariadb
25         ports:
26         - containerPort: 3306
27         readinessProbe:
28           tcpSocket:
29             port: 3306
30           initialDelaySeconds: 5
31           periodSeconds: 10
32       imagePullSecrets:
33       - name: onap-docker-registry-key