blob: dc35dfb9500f21002c6c2e29d94fab1b84477ca2 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
yurynfcef9942017-10-26 17:10:50 +030015#{{ if not .Values.disableAppcAppcDgbuilder }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040016apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
19 name: appc-dgbuilder
BorislavG8bfc6cf2018-02-27 15:04:26 +000020 namespace: "{{ .Values.nsPrefix }}"
Mandeep Khindad6ea9872017-06-24 11:49:37 -040021spec:
vaibhav_16deca6719fe2018-02-14 09:48:43 +000022 replicas: {{ .Values.dgbuilderReplicas }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040023 selector:
24 matchLabels:
25 app: appc-dgbuilder
26 template:
27 metadata:
28 labels:
29 app: appc-dgbuilder
30 name: appc-dgbuilder
Mandeep Khindad6ea9872017-06-24 11:49:37 -040031 spec:
kiranyafd583132017-11-22 12:34:34 +000032 initContainers:
33 - command:
34 - /root/ready.py
35 args:
36 - --container-name
37 - appc-db-container
38 - --container-name
39 - appc-controller-container
40 env:
41 - name: NAMESPACE
42 valueFrom:
43 fieldRef:
44 apiVersion: v1
45 fieldPath: metadata.namespace
46 image: {{ .Values.image.readiness }}
47 imagePullPolicy: {{ .Values.pullPolicy }}
48 name: appc-dgbuilder-readiness
Mandeep Khindad6ea9872017-06-24 11:49:37 -040049 containers:
50 - command:
51 - /bin/bash
52 - -c
Mandeep Khinda9743d842017-10-05 22:08:08 +000053 - cd /opt/onap/sdnc/dgbuilder/ && ./start.sh sdnc1.0 && wait
Mandeep Khindad6ea9872017-06-24 11:49:37 -040054 env:
55 - name: MYSQL_ROOT_PASSWORD
56 value: openECOMP1.0
57 - name: SDNC_CONFIG_DIR
Alexis de Talhouëtf6b4f5f2017-11-28 10:50:57 -050058 value: /opt/onap/sdnc/data/properties
kerenj6ca15a72017-08-23 12:05:23 +000059 image: {{ .Values.image.dgbuilderSdnc }}
60 imagePullPolicy: {{ .Values.pullPolicy }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040061 name: appc-dgbuilder-container
62 ports:
63 - containerPort: 3100
64 readinessProbe:
65 tcpSocket:
66 port: 3100
67 initialDelaySeconds: 5
68 periodSeconds: 10
yuryn8b3bc5a2017-09-13 19:21:03 +030069 volumeMounts:
70 - name: localtime
71 mountPath: /etc/localtime
72 readOnly: true
BorislavG8bfc6cf2018-02-27 15:04:26 +000073 - name: dgbuilder-conf
74 mountPath: /opt/onap/sdnc/dgbuilder/releases/sdnc1.0/conf/svclogic.properties
75 subPath: svclogic.properties
76 - name: dgbuilder-conf
77 mountPath: /opt/onap/sdnc/dgbuilder/svclogic/svclogic.properties
78 subPath: svclogic.properties
79 - name: dgbuilder-scripts
80 mountPath: /opt/onap/sdnc/dgbuilder/createReleaseDir.sh
81 subPath: createReleaseDir.sh
82 - name: dgbuilder-scripts
83 mountPath: /opt/onap/sdnc/dgbuilder/releases/sdnc1.0/customSettings.js
84 subPath: customSettings.js
yuryn8b3bc5a2017-09-13 19:21:03 +030085 volumes:
86 - name: localtime
87 hostPath:
88 path: /etc/localtime
BorislavG8bfc6cf2018-02-27 15:04:26 +000089 - name: dgbuilder-conf
90 configMap:
91 name: appc-dgbuilder-conf-configmap
92 - name: dgbuilder-scripts
93 configMap:
94 name: appc-dgbuilder-scripts-configmap
95 defaultMode: 0755
Mandeep Khindad6ea9872017-06-24 11:49:37 -040096 restartPolicy: Always
Borislav Glozman5197e2e2017-07-24 10:45:28 +030097 imagePullSecrets:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000098 - name: "{{ .Values.nsPrefix }}-docker-registry-key"
kiranyafd583132017-11-22 12:34:34 +000099#{{ end }}