blob: 70895d308d2d9c1faa1531b87e17e6ef3c1e02e3 [file] [log] [blame]
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +00001# Copyright © 2017 Amdocs, AT&T, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 ZTE
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +00003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24 release: {{ .Release.Name }}
25 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
32 release: {{ .Release.Name }}
33 spec:
34 initContainers:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000035 - name: {{ include "common.name" . }}-job-completion
36 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
37 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
38 command:
39 - /root/job_complete.py
40 args:
41 - --job-name
Mike Elliott6482f502018-04-30 15:02:43 -040042 - {{ .Release.Name }}-sdc-onboarding-be-cassandra-init
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000043 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
49 containers:
50 - name: {{ include "common.name" . }}
51 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
52 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 ports:
54 - containerPort: {{ .Values.service.internalPort }}
55 - containerPort: {{ .Values.service.internalPort2 }}
56 {{ if eq .Values.liveness.enabled true }}
57 livenessProbe:
amitjaia4cef272019-01-08 15:29:42 +053058 exec:
59 command:
60 - "/var/lib/ready-probe.sh"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000061 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62 periodSeconds: {{ .Values.liveness.periodSeconds }}
63 {{ end }}
64 readinessProbe:
65 exec:
66 command:
67 - "/var/lib/ready-probe.sh"
68 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
69 periodSeconds: {{ .Values.readiness.periodSeconds }}
Mukula93baa82018-09-19 15:56:58 +000070 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000071{{ include "common.resources" . | indent 12 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000072 env:
73 - name: ENVNAME
74 value: {{ .Values.global.env.name }}
75 - name: JAVA_OPTIONS
76 value: {{ .Values.config.javaOptions }}
77 - name: SDC_CLUSTER_NAME
78 value: "SDC-CS-{{ .Values.global.env.name }}"
79 - name: cassandra_ssl_enabled
80 value: {{ .Values.config.cassandraSslEnabled | quote }}
81 - name: HOST_IP
82 valueFrom:
83 fieldRef:
84 fieldPath: status.podIP
85 - name: SDC_USER
86 valueFrom:
87 secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_user}
88 - name: SDC_PASSWORD
89 valueFrom:
90 secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_password}
kooper543d3aa2019-05-02 10:27:15 +000091 - name: SDC_CERT_DIR
92 value: {{ .Values.cert.certDir }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000093 volumeMounts:
94 - name: {{ include "common.fullname" . }}-environments
95 mountPath: /root/chef-solo/environments/
96 - name: {{ include "common.fullname" . }}-localtime
97 mountPath: /etc/localtime
98 readOnly: true
99 - name: {{ include "common.fullname" . }}-logs
100 mountPath: /var/log/onap
101 - name: {{ include "common.fullname" . }}-logback
102 mountPath: /tmp/logback.xml
103 subPath: logback.xml
kooper543d3aa2019-05-02 10:27:15 +0000104 - name: {{ include "common.fullname" . }}-cert-storage
105 mountPath: "{{ .Values.cert.certDir }}"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000106 lifecycle:
107 postStart:
108 exec:
109 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/onboarding-be/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000110 # side car containers
111 - name: {{ include "common.name" . }}-filebeat-onap
112 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
113 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
114 volumeMounts:
115 - name: {{ include "common.fullname" . }}-filebeat-conf
116 mountPath: /usr/share/filebeat/filebeat.yml
117 subPath: filebeat.yml
118 - name: {{ include "common.fullname" . }}-logs
119 mountPath: /var/log/onap
120 - name: {{ include "common.fullname" . }}-data-filebeat
121 mountPath: /usr/share/filebeat/data
122 volumes:
123 - name: {{ include "common.fullname" . }}-localtime
124 hostPath:
125 path: /etc/localtime
126 - name: {{ include "common.fullname" . }}-filebeat-conf
127 configMap:
128 name: {{ .Release.Name }}-sdc-filebeat-configmap
129 - name: {{ include "common.fullname" . }}-data-filebeat
130 emptyDir: {}
131 - name: {{ include "common.fullname" . }}-logback
132 configMap:
133 name : {{ include "common.fullname" . }}-logging-configmap
134 - name: {{ include "common.fullname" . }}-environments
135 configMap:
136 name: {{ .Release.Name }}-sdc-environments-configmap
137 defaultMode: 0755
138 - name: {{ include "common.fullname" . }}-logs
139 emptyDir: {}
kooper543d3aa2019-05-02 10:27:15 +0000140 - name: {{ include "common.fullname" . }}-cert-storage
141 persistentVolumeClaim:
142 claimName: {{ include "common.fullname" . }}-cert
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000143 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000144 - name: "{{ include "common.namespace" . }}-docker-registry-key"