blob: 9b585e246fa7e00194f08dce280d7a84bb62ddea [file] [log] [blame]
Mandeep Khindad6ea9872017-06-24 11:49:37 -04001apiVersion: extensions/v1beta1
2kind: Deployment
3metadata:
4 labels:
5 app: vid-mariadb
6 name: vid-mariadb
Mandeep Khinda0e8f8892017-08-25 03:31:17 +00007 namespace: "{{ .Values.nsPrefix }}-vid"
Mandeep Khindad6ea9872017-06-24 11:49:37 -04008spec:
9 selector:
10 matchLabels:
11 app: vid-mariadb
12 template:
13 metadata:
14 labels:
15 app: vid-mariadb
16 name: vid-mariadb
17 spec:
18 containers:
kerenjbf4b4a02017-08-23 07:39:14 +000019 - image: {{ .Values.image.mariadb }}
20 imagePullPolicy: {{ .Values.pullPolicy }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040021 name: vid-mariadb
22 env:
23 - name: MYSQL_DATABASE
Mandeep Khindaaa5ea3e2017-08-21 16:11:03 -040024 value: vid_openecomp_epsdk
Mandeep Khindad6ea9872017-06-24 11:49:37 -040025 - name: MYSQL_USER
26 value: vidadmin
27 - name: MYSQL_PASSWORD
28 value: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
29 - name: MYSQL_ROOT_PASSWORD
30 value: LF+tp_1WqgSY
31 volumeMounts:
yuryn8b3bc5a2017-09-13 19:21:03 +030032 - mountPath: /etc/localtime
33 name: localtime
34 readOnly: true
Mandeep Khindad6ea9872017-06-24 11:49:37 -040035 - mountPath: /var/lib/mysql
36 name: vid-mariadb-data
37 - mountPath: /docker-entrypoint-initdb.d/vid-pre-init.sql
38 name: vid-pre-init
39 - mountPath: /etc/mysql/my.cnf
40 name: my-cnf
41 ports:
42 - containerPort: 3306
43 readinessProbe:
44 tcpSocket:
45 port: 3306
46 initialDelaySeconds: 5
47 periodSeconds: 10
48 volumes:
yuryn8b3bc5a2017-09-13 19:21:03 +030049 - name: localtime
50 hostPath:
51 path: /etc/localtime
Mandeep Khindad6ea9872017-06-24 11:49:37 -040052 - name: vid-mariadb-data
BorislavG66a9a5c2017-09-06 15:12:46 +030053 persistentVolumeClaim:
54 claimName: vid-db
Mandeep Khindad6ea9872017-06-24 11:49:37 -040055 - name: vid-pre-init
56 hostPath:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000057 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/vid/vid/lf_config/vid-pre-init.sql
Mandeep Khindad6ea9872017-06-24 11:49:37 -040058 - name: my-cnf
59 hostPath:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000060 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/vid/vid/lf_config/vid-my.cnf
Borislav Glozman5197e2e2017-07-24 10:45:28 +030061 imagePullSecrets:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000062 - name: "{{ .Values.nsPrefix }}-docker-registry-key"