blob: 75779a319c20247cac61fe156f3852134b37373e [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 "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000025 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010032 release: {{ include "common.release" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000033 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
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010042 - {{ include "common.release" . }}-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:
MichaelMorrisb137f7e2020-03-15 17:44:48 +000060 - "/var/lib/jetty/ready-probe.sh"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000061 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62 periodSeconds: {{ .Values.liveness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -050063 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000064 {{ end }}
65 readinessProbe:
66 exec:
67 command:
MichaelMorrisb137f7e2020-03-15 17:44:48 +000068 - "/var/lib/jetty/ready-probe.sh"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000069 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
70 periodSeconds: {{ .Values.readiness.periodSeconds }}
Brian Freeman6142d942019-10-02 09:50:19 -050071 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Mukula93baa82018-09-19 15:56:58 +000072 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000073{{ include "common.resources" . | indent 12 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000074 env:
75 - name: ENVNAME
76 value: {{ .Values.global.env.name }}
77 - name: JAVA_OPTIONS
78 value: {{ .Values.config.javaOptions }}
79 - name: SDC_CLUSTER_NAME
80 value: "SDC-CS-{{ .Values.global.env.name }}"
81 - name: cassandra_ssl_enabled
82 value: {{ .Values.config.cassandraSslEnabled | quote }}
83 - name: HOST_IP
84 valueFrom:
85 fieldRef:
86 fieldPath: status.podIP
87 - name: SDC_USER
88 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010089 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000090 - name: SDC_PASSWORD
91 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010092 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
kooper543d3aa2019-05-02 10:27:15 +000093 - name: SDC_CERT_DIR
94 value: {{ .Values.cert.certDir }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000095 volumeMounts:
96 - name: {{ include "common.fullname" . }}-environments
MichaelMorrisb137f7e2020-03-15 17:44:48 +000097 mountPath: /var/lib/jetty/chef-solo/environments/
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000098 - name: {{ include "common.fullname" . }}-localtime
99 mountPath: /etc/localtime
100 readOnly: true
101 - name: {{ include "common.fullname" . }}-logs
102 mountPath: /var/log/onap
103 - name: {{ include "common.fullname" . }}-logback
104 mountPath: /tmp/logback.xml
105 subPath: logback.xml
kooper543d3aa2019-05-02 10:27:15 +0000106 - name: {{ include "common.fullname" . }}-cert-storage
107 mountPath: "{{ .Values.cert.certDir }}"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000108 lifecycle:
109 postStart:
110 exec:
111 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 +0000112 # side car containers
113 - name: {{ include "common.name" . }}-filebeat-onap
114 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
115 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
116 volumeMounts:
117 - name: {{ include "common.fullname" . }}-filebeat-conf
118 mountPath: /usr/share/filebeat/filebeat.yml
119 subPath: filebeat.yml
120 - name: {{ include "common.fullname" . }}-logs
121 mountPath: /var/log/onap
122 - name: {{ include "common.fullname" . }}-data-filebeat
123 mountPath: /usr/share/filebeat/data
124 volumes:
125 - name: {{ include "common.fullname" . }}-localtime
126 hostPath:
127 path: /etc/localtime
128 - name: {{ include "common.fullname" . }}-filebeat-conf
129 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100130 name: {{ include "common.release" . }}-sdc-filebeat-configmap
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000131 - name: {{ include "common.fullname" . }}-data-filebeat
132 emptyDir: {}
133 - name: {{ include "common.fullname" . }}-logback
134 configMap:
135 name : {{ include "common.fullname" . }}-logging-configmap
136 - name: {{ include "common.fullname" . }}-environments
137 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100138 name: {{ include "common.release" . }}-sdc-environments-configmap
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000139 defaultMode: 0755
140 - name: {{ include "common.fullname" . }}-logs
141 emptyDir: {}
kooper543d3aa2019-05-02 10:27:15 +0000142 - name: {{ include "common.fullname" . }}-cert-storage
143 persistentVolumeClaim:
144 claimName: {{ include "common.fullname" . }}-cert
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000145 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000146 - name: "{{ include "common.namespace" . }}-docker-registry-key"