blob: 8be421cbf9b23218531c82cb66013e75dcc17031 [file] [log] [blame]
Mandeep Khindad6ea9872017-06-24 11:49:37 -04001apiVersion: extensions/v1beta1
2kind: Deployment
3metadata:
4 name: appc
Mandeep Khinda0e8f8892017-08-25 03:31:17 +00005 namespace: "{{ .Values.nsPrefix }}-appc"
Mandeep Khindad6ea9872017-06-24 11:49:37 -04006spec:
7 selector:
8 matchLabels:
9 app: appc
10 template:
11 metadata:
12 labels:
13 app: appc
14 name: appc
15 annotations:
16 pod.beta.kubernetes.io/init-containers: '[
17 {
18 "args": [
19 "--container-name",
20 "appc-db-container"
21 ],
22 "command": [
23 "/root/ready.py"
24 ],
25 "env": [
26 {
27 "name": "NAMESPACE",
28 "valueFrom": {
29 "fieldRef": {
30 "apiVersion": "v1",
31 "fieldPath": "metadata.namespace"
32 }
33 }
34 }
35 ],
kerenj6ca15a72017-08-23 12:05:23 +000036 "image": "{{ .Values.image.readiness }}",
37 "imagePullPolicy": "{{ .Values.pullPolicy }}",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040038 "name": "appc-readiness"
39 }
40 ]'
41 spec:
42 containers:
43 - command:
44 - /opt/openecomp/appc/bin/startODL.sh
45 env:
46 - name: MYSQL_ROOT_PASSWORD
47 value: openECOMP1.0
48 - name: SDNC_CONFIG_DIR
49 value: /opt/openecomp/sdnc/data/properties
50 - name: APPC_CONFIG_DIR
51 value: /opt/openecomp/appc/data/properties
52 - name: DMAAP_TOPIC_ENV
53 value: SUCCESS
kerenj6ca15a72017-08-23 12:05:23 +000054 image: {{ .Values.image.appc }}
55 imagePullPolicy: {{ .Values.pullPolicy }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040056 name: appc-controller-container
57 volumeMounts:
Mandeep Khinda9f354812017-08-25 16:18:28 +000058 - mountPath: /opt/openecomp/appc/data/properties/appc.properties
59 name: appc-properties
60 - mountPath: /opt/openecomp/appc/data/properties/aaiclient.properties
61 name: appc-aaiclient-properties
62 - mountPath: /opt/openecomp/sdnc/data/properties/aaiclient.properties
63 name: sdnc-aaiclient-properties
64 - mountPath: /opt/openecomp/sdnc/data/properties/admportal.json
65 name: sdnc-admportal-json
Mandeep Khindad6ea9872017-06-24 11:49:37 -040066 ports:
67 - containerPort: 8181
68 - containerPort: 1830
69 readinessProbe:
70 tcpSocket:
71 port: 8181
72 initialDelaySeconds: 5
73 periodSeconds: 10
74 volumes:
Mandeep Khinda9f354812017-08-25 16:18:28 +000075 - name: appc-properties
Mandeep Khindad6ea9872017-06-24 11:49:37 -040076 hostPath:
Mandeep Khinda9f354812017-08-25 16:18:28 +000077 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/appc/conf/appc.properties
78 - name: appc-aaiclient-properties
Mandeep Khindad6ea9872017-06-24 11:49:37 -040079 hostPath:
Mandeep Khinda9f354812017-08-25 16:18:28 +000080 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/appc/conf/aaiclient.properties
81 - name: sdnc-aaiclient-properties
82 hostPath:
83 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdnc/conf/aaiclient.properties
84 - name: sdnc-admportal-json
85 hostPath:
86 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdnc/conf/admportal.json
Borislav Glozman5197e2e2017-07-24 10:45:28 +030087 imagePullSecrets:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000088 - name: "{{ .Values.nsPrefix }}-docker-registry-key"